BOSS 7.0.6
BESIII Offline Software System
Loading...
Searching...
No Matches
RawEventReader.h
Go to the documentation of this file.
1#ifndef MixerAlg_h
2#define MixerAlg_h
3
4#include "GaudiKernel/Algorithm.h"
5#include <string>
6
7#include "GaudiKernel/IDataProviderSvc.h"
9
10class MdcConverter;
11class TofConverter;
12class EmcConverter;
13class MucConverter;
14
15class RawEventReader:public Algorithm {
16public:
17 RawEventReader(const std::string& name, ISvcLocator* pSvcLocator);
18 virtual ~RawEventReader();
19 StatusCode initialize();
20 StatusCode execute();
21 StatusCode finalize();
22
23 StatusCode readEvent();
24private:
25
26 IDataProviderSvc* m_evtSvc;
27
28 MdcConverter* m_mdcCnv;
29 TofConverter* m_tofCnv;
30 EmcConverter* m_emcCnv;
31 MucConverter* m_mucCnv;
32
33 int m_mdcdigi;
34 int m_tofdigi;
35 int m_emcdigi;
36 int m_mucdigi;
37
38
39 RAWEVENT* m_raw_event;
40 std::vector<std::string> m_inputFiles;
41};
42
43#endif
virtual ~RawEventReader()
StatusCode initialize()
StatusCode finalize()
StatusCode execute()
StatusCode readEvent()