Class Reference for E1039 Core & Analysis Software
DbUpSpill.h
Go to the documentation of this file.
1 #ifndef _DB_UP_SPILL__H_
2 #define _DB_UP_SPILL__H_
3 #include <fun4all/SubsysReco.h>
4 class SQSpill;
5 class SQHardSpill;
6 
7 class DbUpSpill: public SubsysReco {
8  public:
9  DbUpSpill(const std::string &name = "DbUpSpill");
10  virtual ~DbUpSpill() {}
11  int Init(PHCompositeNode *topNode);
12  int InitRun(PHCompositeNode *topNode);
13  int process_event(PHCompositeNode *topNode);
14  int End(PHCompositeNode *topNode);
15 
16  private:
17  void ClearTable(const char* table_name, const int run_id);
18  void UploadToSpillTable(SQSpill* spi, SQHardSpill* hspi);
19  void UploadToScalerTable(SQSpill* spi, const std::string boseos);
20  void UploadToSlowContTable(SQSpill* spi);
21  void PrintSpill(SQSpill* spi, SQHardSpill* hspi);
22 };
23 
24 #endif /* _DB_UP_SPILL__H_ */
virtual ~DbUpSpill()
Definition: DbUpSpill.h:10
int process_event(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:49
int InitRun(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:34
DbUpSpill(const std::string &name="DbUpSpill")
Definition: DbUpSpill.cc:24
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: DbUpSpill.cc:71
int Init(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:29
An SQ interface class to hold the hardware-related data of one spill.
Definition: SQHardSpill.h:7
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19