// D0DetectorSimulator.h #ifndef D0DetectorSimulator_H #define D0DetectorSimulator_H // D0 detector simulator. // The constructor creates subdetector simulators and extracts // their named layer simulators. #include "trflayer/DetectorSimulator.h" class D0DetectorSimulator : public trf::DetectorSimulator { private: // attributes public: // methods // constructor D0DetectorSimulator(const trf::DetectorPtr& pdet); // destructor ~D0DetectorSimulator(); }; #endif