#ifndef PHYSICIST1A_H #define PHYSICIST1A_H // physicist1a.h -- Physicst header in module A 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 FindTracks : public Module { public: FindTracks( const string & name ); void operator()( Event & event ); // THIS IS REQUIRED to satisfy // the pure virtual in Module static int event_counter_; static int event_counter(); }; // FindTracks #endif // PHYSICIST1A_H