#ifndef PNDTORINODETECTORGEOPAR_H #define PNDTORINODETECTORGEOPAR_H #include "FairParGenericSet.h" class TObjArray; class FairParamList; class PndtorinoDetectorGeoPar : public FairParGenericSet { public: /** List of FairGeoNodes for sensitive volumes */ TObjArray* fGeoSensNodes; /** List of FairGeoNodes for sensitive volumes */ TObjArray* fGeoPassNodes; PndtorinoDetectorGeoPar(const char* name="PndtorinoDetectorGeoPar", const char* title="PndtorinoDetector Geometry Parameters", const char* context="TestDefaultContext"); ~PndtorinoDetectorGeoPar(void); void clear(void); void putParams(FairParamList*); Bool_t getParams(FairParamList*); TObjArray* GetGeoSensitiveNodes() {return fGeoSensNodes;} TObjArray* GetGeoPassiveNodes() {return fGeoPassNodes;} private: PndtorinoDetectorGeoPar(const PndtorinoDetectorGeoPar&); PndtorinoDetectorGeoPar& operator=(const PndtorinoDetectorGeoPar&); ClassDef(PndtorinoDetectorGeoPar,1) }; #endif