File indexing completed on 2026-07-16 08:13:57
0001 #ifndef BCOLUMICOUNT_STREAMINGBCOCHECK_H
0002 #define BCOLUMICOUNT_STREAMINGBCOCHECK_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 StreamingBcoCheck : public SubsysReco
0013 {
0014 public:
0015 StreamingBcoCheck(const std::string &name = "BCOCHECKSTREAMINGOUTPUT");
0016 ~StreamingBcoCheck() override = default;
0017
0018 int Init(PHCompositeNode *topNode) override;
0019 int process_event(PHCompositeNode *topNode) override;
0020
0021 private:
0022 static int CreateNodeTree(PHCompositeNode *topNode);
0023 };
0024
0025 #endif