Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:50

0001 #ifndef PHGEOMETRY_PHGEOMFILEIMPORT_H
0002 #define PHGEOMETRY_PHGEOMFILEIMPORT_H
0003 
0004 #include <fun4all/SubsysReco.h>
0005 
0006 #include <string>
0007 
0008 class PHCompositeNode;
0009 
0010 //! Fun4All module to import TGeo ROOT Geometry at run time
0011 class PHGeomFileImport : public SubsysReco
0012 {
0013  public:
0014   explicit PHGeomFileImport(const std::string &geometry_file);
0015   ~PHGeomFileImport() override {}
0016 
0017   int InitRun(PHCompositeNode *topNode) override;
0018 
0019  protected:
0020   std::string m_GeometryFile;
0021 };
0022 
0023 #endif