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