BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
DQAFillEx.h
Go to the documentation of this file.
1#ifndef Physics_Analysis_DQAFillEx_H
2#define Physics_Analysis_DQAFillEx_H
3
4#include "GaudiKernel/Algorithm.h"
5#include "GaudiKernel/ITHistSvc.h"
6#include "GaudiKernel/NTuple.h"
7
8/**********************************************************************/
9/** <project name> -
10 ** <description> Head file for histogram(tuple) filling algorithm
11 **
12 ** \file
13 **
14 ** \author Ji Xiaobin
15 **
16 ** \version $Id: DQAFillEx.h,v 1.1.1.1 2009/05/27 03:43:05 jixb Exp $
17 **
18 **
19 *************************************************************************/
20
21class DQAFillEx : public Algorithm {
22
23public:
24 DQAFillEx( const std::string& name, ISvcLocator* pSvcLocator );
25 StatusCode initialize();
26 StatusCode execute();
27 StatusCode finalize();
28
29private:
30 ITHistSvc* m_thsvc;
31
32 NTuple::Tuple* m_tuple;
33 NTuple::Item<long> m_runNo;
34 NTuple::Item<long> m_event;
35};
36
37#endif
StatusCode finalize()
StatusCode execute()
Definition DQAFillEx.cxx:81
DQAFillEx(const std::string &name, ISvcLocator *pSvcLocator)
Definition DQAFillEx.cxx:31
StatusCode initialize()
Definition DQAFillEx.cxx:38