File indexing completed on 2025-08-03 08:16:42
0001
0002
0003 #ifndef FFARAWMODULES_INTTCHECK_H
0004 #define FFARAWMODULES_INTTCHECK_H
0005
0006 #include <fun4all/SubsysReco.h>
0007
0008 #include <set>
0009 #include <string>
0010
0011 class Fun4AllInputManager;
0012 class PHCompositeNode;
0013
0014 class InttCheck : public SubsysReco
0015 {
0016 public:
0017 InttCheck(const std::string &name = "InttCheck");
0018
0019 ~InttCheck() override {}
0020
0021 int Init(PHCompositeNode *topNode) override;
0022
0023 int process_event(PHCompositeNode *topNode) override;
0024
0025
0026
0027 void MyEvtNode(const std::string &name) { m_EvtNodeName = name; }
0028
0029 private:
0030 std::string m_EvtNodeName = "INTTRAWHIT";
0031 std::set<uint64_t> bclk_seen;
0032 };
0033
0034 #endif