Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:21:57

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 = default;
0017 
0018   //! event processing
0019   int process_event(PHCompositeNode *) override;
0020 
0021  protected:
0022   unsigned int errorcnt{0};
0023 };
0024 
0025 #endif