CGEM BOSS 6.6.5.g
BESIII Offline Software System
Loading...
Searching...
No Matches
LocalEptoRhoGamSelector.cxx
Go to the documentation of this file.
1#include "GaudiKernel/Bootstrap.h"
2#include "GaudiKernel/IJobOptionsSvc.h"
3#include "GaudiKernel/ISvcLocator.h"
4#include "GaudiKernel/PropertyMgr.h"
5
12
14{
15 IJobOptionsSvc* jobSvc;
16 Gaudi::svcLocator()->service("JobOptionsSvc", jobSvc);
17
18 PropertyMgr m_propMgr;
19
20 //Declare the properties
21 m_propMgr.declareProperty("minMass", m_minMass = 0.938);
22 m_propMgr.declareProperty("maxMass", m_maxMass = 0.978);
23
24
25 jobSvc->setMyProperties("LocalEptoRhoGamSelector", &m_propMgr);
26}
27
29
30 aEp.setUserTag(1);
31 double mass = aEp.mass();
32 if(mass >= m_minMass && mass<= m_maxMass)
33 return true;
34 else
35 return false;
36}
37
double mass
LocalEptoRhoGamSelector eptoRhoGamSelector
void setUserTag(int tag)
Definition: CDCandidate.cxx:81
double mass() const