#ifndef PHYSICIST1B_H #define PHYSICIST1B_H // physicist1a.h -- Physicst header in module B for test of step1 // implementation of ErrorLogger mechanism. #include "frame1.h" #include "Module1.h" #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif #include "ZMutility/iostream" USING( std::cout ) USING( std::endl ) #include USING( std::string ) //============================================================================= // // PHYSICIST // //============================================================================= // ***************** FindTracks module ********************** class Event; class DoPhysics : public Module { public: DoPhysics( const string & name ); void operator()( Event & event ); // THIS IS REQUIRED to satisfy // the pure virtual in Module }; // DoPhysics #endif // PHYSICIST1B_H