ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHGeomFileImport.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHGeomFileImport.h
1 #ifndef PHGEOMETRY_PHGEOMFILEIMPORT_H
2 #define PHGEOMETRY_PHGEOMFILEIMPORT_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
9 
12 {
13  public:
14  explicit PHGeomFileImport(const std::string &geometry_file);
15  ~PHGeomFileImport() override {}
16 
17  int InitRun(PHCompositeNode *topNode) override;
18 
19  protected:
20  std::string m_GeometryFile;
21 };
22 
23 #endif