PandaRoot
PndGeoMagnet.h
Go to the documentation of this file.
1 #ifndef PNDGEOMAGNET_H
2 #define PNDGEOMAGNET_H
3 
4 #include "FairGeoSet.h"
5 #include "TString.h"
6 
7 class PndGeoMagnet : public FairGeoSet {
8  protected:
9  char modName[2]; // name of module
10  char eleName[2]; // substring for elements in module
11  public:
12  PndGeoMagnet();
14  const char *getModuleName(Int_t) { return modName; }
15  const char *getEleName(Int_t) { return eleName; }
16  ClassDef(PndGeoMagnet, 0) // Class for the geometry of Magnet
17 };
18 
19 #endif /* !CBMGEOMAGNET_H */
char eleName[2]
Definition: PndGeoMagnet.h:10
char modName[2]
Definition: PndGeoMagnet.h:9
const char * getModuleName(Int_t)
Definition: PndGeoMagnet.h:14
const char * getEleName(Int_t)
Definition: PndGeoMagnet.h:15