// -*- mode: c++ -*- // // $Id: BrZdcDigModule.h,v 1.1 2001/08/12 10:15:05 cholm Exp $ // $Author: cholm $ // $Date: 2001/08/12 10:15:05 $ // $Copyright: (C) 2001 BRAHMS Collaboration // #ifndef BRAT_BrZdcDigModule #define BRAT_BrZdcDigModule #ifndef BRAT_BrModule #include "BrModule.h" #endif #ifndef BRAT_BrEventNode #include "BrEventNode.h" #endif class BrZdcDigModule : public BrModule { private: public: BrZdcDigModule(); BrZdcDigModule(const Char_t* name, const Char_t* title); virtual ~BrZdcDigModule () {} virtual void DefineHistograms(); virtual void Init(); virtual void Begin(); virtual void Event(BrEventNode* inNode, BrEventNode* outNode); virtual void End(); virtual void Finish(); virtual void Print(Option_t* option="B") const; // *MENU* ClassDef(BrZdcDigModule,0) // Dummy module for now }; #endif //____________________________________________________________________ // // $Log: BrZdcDigModule.h,v $ // Revision 1.1 2001/08/12 10:15:05 cholm // Added dummy BrZdcDigModule. Please note that this module does _nothing_ // at the moment. Some one knowledgeable on the ZDCs should fill out the // methods in this module. // //