BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/BesDChain/include/BesDChain/BesDCSelector.h
Go to the documentation of this file.
1#ifndef BES_DCHAIN_SELECTOR_H
2#define BES_DCHAIN_SELECTOR_H
3
4#include "GaudiKernel/IDataProviderSvc.h"
5
6#include "DecayChain/Function/DCSelectionFunction.h"
7#include "VertexDbSvc/IVertexDbSvc.h"
8
9template <class Arg> class BesDCSelector : public DCSelectionFunction<Arg> {
10
11public:
12 BesDCSelector() : m_evtSvc( 0 ){};
13 virtual ~BesDCSelector(){};
14
15protected:
16 IDataProviderSvc* eventSvc();
18
19private:
20 IDataProviderSvc* m_evtSvc;
21 IVertexDbSvc* m_vtxSvc;
22};
23
24#include "BesDChain/Template/BesDCSelector.cc"
25
26#endif