#ifndef PNDSSDGEOPAR_H #define PNDSSDGEOPAR_H #include "FairParGenericSet.h" #include "TH1F.h" class PndSsdGeoPar : public FairParGenericSet { public: PndSsdGeoPar(const char* name="PndSsdGeoPar", const char* title="PndSsd Geometry Parameters", const char* context="TestDefaultContext"); ~PndSsdGeoPar(void); void clear(void); void putParams(FairParamList* l); Bool_t getParams(FairParamList* l); TObjArray *GetGeoSensitiveNodes(){return fGeoSensNodes;} TObjArray *GetGeoPassiveNodes(){return fGeoPassNodes;} private: TObjArray *fGeoSensNodes; // List of FairGeoNodes for sensitive volumes TObjArray *fGeoPassNodes; // List of FairGeoNodes for sensitive volumes ClassDef(PndSsdGeoPar,2); }; #endif /* !PNDSSDGEOPAR_H */