Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:19:20

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4MAIN_PHG4CONSISTENCYCHECK_H
0004 #define G4MAIN_PHG4CONSISTENCYCHECK_H
0005 
0006 #include <fun4all/SubsysReco.h>
0007 
0008 #include <string>  // for string
0009 
0010 class PHCompositeNode;
0011 
0012 class PHG4ConsistencyCheck : public SubsysReco
0013 {
0014  public:
0015   PHG4ConsistencyCheck(const std::string &name = "CONSISTENCYCHECK");
0016   ~PHG4ConsistencyCheck() override {}
0017   //! init
0018   int InitRun(PHCompositeNode *) override;
0019 
0020   //! event processing
0021   int process_event(PHCompositeNode *) override;
0022 
0023  protected:
0024   unsigned int errorcnt;
0025 };
0026 
0027 #endif