File indexing completed on 2026-04-02 08:12:37
0001 #ifndef BCOLUMICOUNT_BCOLUMICHECK_H
0002 #define BCOLUMICOUNT_BCOLUMICHECK_H
0003
0004 #include <fun4all/SubsysReco.h>
0005
0006 #include <string>
0007
0008 class BcoLumiCheck : public SubsysReco
0009 {
0010 public:
0011 BcoLumiCheck(const std::string &name = "BCOLUMICHECK");
0012 ~BcoLumiCheck() override = default;
0013
0014 int Init(PHCompositeNode *topNode) override;
0015 int InitRun(PHCompositeNode *topNode) override;
0016 int process_event(PHCompositeNode *topNode) override;
0017
0018 private:
0019 static int CreateNodeTree(PHCompositeNode *topNode);
0020 };
0021
0022 #endif