// -*- mode: c++ -*- // // $Id: BrSwitchContainer.h,v 1.1 2001/06/22 17:50:45 cholm Exp $ // $Author: cholm $ // $Date: 2001/06/22 17:50:45 $ // $Copyright: (C) 2001 BRAHMS Collaboration // #ifndef BRAT_BrSwitchContainer #define BRAT_BrSwitchContainer #ifndef BRAT_BrModuleContainer #include "BrModuleContainer.h" #endif #ifndef BRAT_BrEventNode #include "BrEventNode.h" #endif class BrSwitchContainer : public BrModuleContainer { public: BrSwitchContainer(); BrSwitchContainer(const Char_t* name, const Char_t* title); virtual ~BrSwitchContainer () {} virtual void Event(BrEventNode* inNode, BrEventNode* outNode); virtual void Print(Option_t* option="B") const; // *MENU* ClassDef(BrSwitchContainer,0) // Switch outnode to innode for modules }; #endif