BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
PhotonChildSelector.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
6#include "Pi0EtaToGGRecAlg/PhotonChildSelector.h"
7
9{
10 Gaudi::svcLocator()->service("JobOptionsSvc", jobSvc);
11
12 PropertyMgr m_propMgr;
13
14 //Declare the properties
15 m_propMgr.declareProperty("DeltaAngleCut", m_angled_cut = 20);
16 m_propMgr.declareProperty("MinEnergy", m_minEnergy = 0.02);
17 m_propMgr.declareProperty("UseBarrelEmc", m_useBarrel = true);
18 m_propMgr.declareProperty("UseEndcapEmc", m_useEndcap = true);
19
20}