#ifndef FINDTRACKS1_H #define FINDTRACKS1_H // FindTracks1.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 // FINDTRACKS1_H