File indexing completed on 2026-07-16 08:13:57
0001 #ifndef BCOLUMICOUNT_STREAMINGLUMICHECK_H
0002 #define BCOLUMICOUNT_STREAMINGLUMICHECK_H
0003
0004 #include <fun4all/SubsysReco.h>
0005 #include <fun4all/Fun4AllHistoManager.h>
0006
0007 #include <string>
0008
0009 #include <TH1.h>
0010
0011
0012 class StreamingLumiCheck : public SubsysReco
0013 {
0014 public:
0015 StreamingLumiCheck(const std::string &name = "LUMICHECKSTREAMINGOUTPUT");
0016 ~StreamingLumiCheck() override = default;
0017
0018 int Init(PHCompositeNode *topNode) override;
0019 int InitRun(PHCompositeNode *topNode) override;
0020
0021
0022 private:
0023 static int CreateNodeTree(PHCompositeNode *topNode);
0024 };
0025
0026 #endif