Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:07

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef FFARAWMODULES_HCALCHECK_H
0004 #define FFARAWMODULES_HCALCHECK_H
0005 
0006 #include "DumpPacket.h"
0007 
0008 #include <fun4all/SubsysReco.h>
0009 
0010 #include <set>
0011 #include <string>
0012 
0013 class Fun4AllInputManager;
0014 class PHCompositeNode;
0015 
0016 class HcalCheck : public SubsysReco, public DumpPacket
0017 {
0018  public:
0019   HcalCheck(const std::string &name = "HcalCheck");
0020 
0021   ~HcalCheck() override {}
0022 
0023   int Init(PHCompositeNode *topNode) override;
0024 
0025   int process_event(PHCompositeNode *topNode) override;
0026 
0027  private:
0028   /* std::string m_EvtNodeName = "HCALRAWHIT"; */
0029   /* std::set<uint64_t> bclk_seen; */
0030 };
0031 
0032 #endif  // FFARAWMODULES_HCALCHECK_H