//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Target class, for passive material // // // Environment: // Software developed for the FOPI Detector at GSI. // // Author List: // Sverre Doerheim TUM (original author) // // //----------------------------------------------------------- #ifndef FOPITARGET_H #define FOPITARGET_H #include "FairModule.h" class FopiTarget : public FairModule{ public: FopiTarget(){;} FopiTarget(const char * name, const char *title); virtual ~FopiTarget(){;} virtual void ConstructGeometry(); public: ClassDef(FopiTarget,1); }; #endif // FOPITARGET_H