FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairTutorialDet1Geo.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 #ifndef FAIRTUTORIALDET1GEO_H
9 #define FAIRTUTORIALDET1GEO_H
10 
11 #include "FairGeoSet.h" // for FairGeoSet
12 
13 #include <Rtypes.h> // for Int_t, etc
14 #include <TString.h> // for TString
15 
17 {
18  protected:
19  char modName[20]; // name of module
20  char eleName[20]; // substring for elements in module
21 
22  public:
25  const char* getModuleName(Int_t);
26  const char* getEleName(Int_t);
27  inline Int_t getModNumInMod(const TString&);
29 };
30 
31 inline Int_t FairTutorialDet1Geo::getModNumInMod(const TString& name)
32 {
38  return static_cast<Int_t>((name[6] - '0') - 1); //
39 }
40 
41 #endif /* FAIRTUTORIALDETGEO_H */
const char * getEleName(Int_t)
const char * getModuleName(Int_t)
ClassDef(FairTutorialDet1Geo, 1)
Int_t getModNumInMod(const TString &)