1#include "GaudiKernel/Bootstrap.h"
2#include "GaudiKernel/IJobOptionsSvc.h"
3#include "GaudiKernel/ISvcLocator.h"
4#include "GaudiKernel/PropertyMgr.h"
6#include "EventModel/EventModel.h"
7#include "EventModel/EventHeader.h"
8#include "EvtRecEvent/EvtRecEvent.h"
9#include "EvtRecEvent/EvtRecTrack.h"
10#include "ParticleID/ParticleID.h"
11#include "DTagAlg/LocalEptoRhoGamSelector.h"
15 IJobOptionsSvc* jobSvc;
16 Gaudi::svcLocator()->service(
"JobOptionsSvc", jobSvc);
18 PropertyMgr m_propMgr;
21 m_propMgr.declareProperty(
"minMassEptoRhoGam", m_minMass = 0.938);
22 m_propMgr.declareProperty(
"maxMassEptoRhoGam", m_maxMass = 0.978);
25 jobSvc->setMyProperties(
"LocalEptoRhoGamSelector", &m_propMgr);
34 if(
mass >= m_minMass &&
mass<= m_maxMass)
LocalEptoRhoGamSelector eptoRhoGamSelector
const CDCandidate & child(unsigned int aPosition) const
virtual const CDDecay & decay(void) const
bool operator()(CDDecay &aEp)
LocalEptoRhoGamSelector()