BOSS 8.0.0
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 "GaudiKernel/IDataProviderSvc.h"
6#include <string>
7
8#include "RawDataCnv/EventManagement/RAWEVENT.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();
24
25private:
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 RAWEVENT* m_raw_event;
39 std::vector<std::string> m_inputFiles;
40
41 // configuration file for raw data revise
42 std::string m_rawReviseConfig;
43};
44
45#endif
virtual ~RawEventReader()
RawEventReader(const std::string &name, ISvcLocator *pSvcLocator)
StatusCode initialize()
StatusCode finalize()
StatusCode execute()
StatusCode readEvent()