EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairGeoShapes.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairGeoShapes.h
1 #ifndef FAIRGEOSHAPES_H
2 #define FAIRGEOSHAPES_H
3 
4 
5 //#include "FairGeoTransform.h"
6 
7 #include "TObject.h"
8 #include "TString.h"
9 //#include "TList.h"
10 
11 #include <fstream>
12 
13 class FairGeoVolume;
14 class FairGeoBasicShape;
15 class TList;
20 class FairGeoShapes : public TObject
21 {
22  private:
25  protected:
26  TList* shapes; // list of already created shape classes
27  public :
28  FairGeoShapes();
31  FairGeoBasicShape* selectShape(const TString&);
32  Int_t readPoints(std::fstream*,FairGeoVolume*);
33  Bool_t writePoints(std::fstream*,FairGeoVolume*);
34  void printPoints(FairGeoVolume* volu);
35  ClassDef(FairGeoShapes,0) //
36 };
37 
38 #endif /* !FAIRGEOSHAPES_H */