10 #include "GaudiKernel/SystemOfUnits.h"
18 const std::string&
name,
46 ATH_MSG_ERROR(
"There are no cuts set (EtaBins property is an empty list)" );
47 return StatusCode::FAILURE;
66 return StatusCode::SUCCESS;
79 return StatusCode::SUCCESS;
110 mon_dEta, mon_dPhi, mon_eT_T2Calo, mon_hadET_T2Calo,
111 mon_rCore, mon_energyRatio, mon_etaBin, mon_Eta,
112 mon_Phi, mon_F1, mon_Weta2, mon_Wstot, mon_F3, PassedCuts );
114 PassedCuts = PassedCuts + 1;
116 float dEta(0),
dPhi(0), eT_T2Calo(0), rCore(0), hadET_T2Calo(0), energyRatio(0),
eta(0),
phi(0), F1(0), Weta2(0), Wstot(0), F3(0);
120 ATH_MSG_DEBUG(
"AcceptAll property is set: taking all events" );
123 ATH_MSG_DEBUG(
"AcceptAll property not set: applying selection" );
126 auto roiDescriptor =
input.roi;
128 if ( fabs( roiDescriptor->eta() ) > 2.6 ) {
129 ATH_MSG_DEBUG(
"REJECT The cluster had eta coordinates beyond the EM fiducial volume : " << roiDescriptor->eta() <<
"; stop the chain now" );
135 <<
": Eta = " << roiDescriptor->eta()
136 <<
", Phi = " << roiDescriptor->phi() );
139 double etaRef = roiDescriptor->eta();
140 double phiRef = roiDescriptor->phi();
142 if ( fabs( phiRef ) >
M_PI ) phiRef -= 2*
M_PI;
144 auto pClus =
input.cluster;
145 float absEta = fabs( pClus->eta() );
153 dEta = pClus->eta() - etaRef;
156 dPhi = fabs( pClus->phi() - phiRef );
160 if ( pClus->emaxs1() + pClus->e2tsts1() > 0 )
161 energyRatio = ( pClus->emaxs1() - pClus->e2tsts1() ) / ( pClus->emaxs1() + pClus->e2tsts1() );
164 if ( pClus->e277()!= 0. ) rCore = pClus->e237() / pClus->e277();
168 eT_T2Calo = pClus->et();
169 if ( eT_T2Calo!=0 && pClus->eta()!=0 ) hadET_T2Calo = pClus->ehad1()/cosh( fabs( pClus->eta() ) )/eT_T2Calo;
172 Weta2 = pClus->weta2();
175 Wstot = pClus->wstot();
183 F3 = fabs( eallsamples )>0. ?
e3/eallsamples : 0.;
187 <<
" roi eta=" << etaRef <<
" DeltaEta=" <<
dEta
196 PassedCuts = PassedCuts + 1;
200 <<
" roi phi="<< phiRef <<
" DeltaPhi="<<
dPhi
209 PassedCuts = PassedCuts + 1;
212 if ( cutIndex == -1 ) {
220 PassedCuts = PassedCuts + 1;
230 PassedCuts = PassedCuts + 1;
234 if ( inCrack || F1 <
m_F1thr[0] ) {
235 ATH_MSG_DEBUG (
"TrigEMCluster: InCrack= " << inCrack <<
" F1=" << F1 );
243 PassedCuts = PassedCuts + 1;
244 if( inCrack ) energyRatio = -1;
245 mon_energyRatio = energyRatio;
249 if ( eT_T2Calo <
m_eTthr[cutIndex] ) {
253 mon_eT_T2Calo = eT_T2Calo;
254 PassedCuts = PassedCuts + 1;
256 float hadET_cut = 0.0;
258 if ( eT_T2Calo >
m_eT2thr[cutIndex] ) {
268 ATH_MSG_DEBUG (
"TrigEMCluster: ET_had=" << hadET_T2Calo <<
" cut: <" << hadET_cut );
269 if ( hadET_T2Calo > hadET_cut ) {
273 mon_hadET_T2Calo = hadET_T2Calo;
274 PassedCuts = PassedCuts + 1;
279 PassedCuts = PassedCuts + 1;
288 PassedCuts = PassedCuts + 1;
297 PassedCuts = PassedCuts + 1;
301 if ( F3 >
m_F3thr[cutIndex] ) {
306 PassedCuts = PassedCuts + 1;
332 float et(0),
eta(0),
phi(0), NNOutput(0);
335 ATH_MSG_DEBUG(
"AcceptAll property is set: taking all events" );
338 ATH_MSG_DEBUG(
"AcceptAll property not set: applying selection" );
341 auto ringerShape =
input.ringerShape;
345 emCluster = ringerShape->emCluster();
347 ATH_MSG_DEBUG(
"There is no link to xAOD::TrigEMCluster into the Ringer object.");
352 ATH_MSG_WARNING(
"There is no xAOD::TrigRingerRings link into the rnnOutput object.");
357 et = emCluster->
et();
375 ATH_MSG_DEBUG(
"Pid name " <<
m_pidName <<
" not found into the decorator. Probably this decision was not computed by the hypo alg." );
377 mon_NNOutput = NNOutput;
386 auto binIterator = std::adjacent_find(
m_etabin.begin(),
m_etabin.end(), [=](
float left,
float right){ return left < absEta and absEta < right; } );
387 if ( binIterator ==
m_etabin.end() ) {
390 return binIterator -
m_etabin.begin();