EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmModule.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmModule.h
1 #include "FairModule.h"
2 
3 #include "TString.h"
4 
5 #include <map>
6 
7 class TGeoNode;
8 class TGeoMatrix;
9 
10 class CbmModule : public FairModule
11 {
12 public:
13  CbmModule();
14  CbmModule(const char*, const char*);
15  ~CbmModule();
16 
17  void ConstructGDMLGeometry(TGeoMatrix*);
18  void ExpandNodeForGDML(TGeoNode*);
19 
20  void ConstructGeometry();
21 
22 private:
23  static std::map<TString, Int_t> fixedMats;
24  static Bool_t isFirstGDML;
25 
26  ClassDef(CbmModule,1); //CbmModule
27 };