Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:13

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef FFARAWMODULES_ZDCCHECK_H
0004 #define FFARAWMODULES_ZDCCHECK_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 ZdcCheck : public SubsysReco, public DumpPacket
0017 {
0018  public:
0019   ZdcCheck(const std::string &name = "ZdcCheck");
0020 
0021   ~ZdcCheck() override {}
0022 
0023   int Init(PHCompositeNode *topNode) override;
0024 
0025   int process_event(PHCompositeNode *topNode) override;
0026 
0027  private:
0028   /* std::string m_EvtNodeName = "ZDCRAWHIT"; */
0029   /* std::set<uint64_t> bclk_seen; */
0030 };
0031 
0032 #endif  // FFARAWMODULES_ZDCCHECK_H