22 {
23 float jetEMF = -999;
24 double LR=-1;
25 ip->getAttribute(
"EMFrac",jetEMF);
28 else LR= log10(double(1./jetEMF - 1.));
29 }else{
30 LR=-999;
31 }
32 bool pass = LR >
m_max;
33
34 if (!pass){
35 auto jetPhi=
ip->phi();
36 auto jetEta=
ip->eta();
37
39 size_t nClusters = (*
ip->xAODJet())->numConstituents();
40 double clusterPU_sumEEM = 0; double clusterPU_sumE = 0;
41 for (size_t clust = 0; clust < nClusters; clust++) {
43 if (not aCluster) continue;
44 double clusEEM = 0;
45 clusEEM+=(aCluster)->eSample(CaloSampling::EMB1);
46 clusEEM+=(aCluster)->eSample(CaloSampling::EMB2);
47 clusEEM+=(aCluster)->eSample(CaloSampling::EMB3);
48 clusEEM+=(aCluster)->eSample(CaloSampling::EME1);
49 clusEEM+=(aCluster)->eSample(CaloSampling::EME2);
50 clusEEM+=(aCluster)->eSample(CaloSampling::EME3);
51 clusEEM+=(aCluster)->eSample(CaloSampling::FCAL1);
53
54 if (lambda > 500) continue;
55 double d_eta = aCluster->rawEta() - jetEta;
57 double d_R2 = d_eta*d_eta + d_phi*d_phi;
58
59 if (d_R2 < 0.15*0.15) continue;
60 clusterPU_sumEEM+=clusEEM/1000.;
61 clusterPU_sumE+=aCluster->rawE()/1000.;
62 }
63 double jetEEM_EMscale = 0; double jetE_EMscale = 0;
64 std::vector<double> samplingEnergy = (*
ip->xAODJet())->getAttribute<std::vector<double> >(
"EnergyPerSampling");
65
66 for(
size_t s=0;
s<samplingEnergy.size();
s++) {
67 double samplingE = 0.001*(samplingEnergy.at(s));
68 if ( s < 8 || (s > 20 && s < 28) ) jetEEM_EMscale+=samplingE;
69 jetE_EMscale+=samplingE;
70 }
72 else jetEMF = (jetEEM_EMscale - clusterPU_sumEEM)/(jetE_EMscale - clusterPU_sumE);
75 else {LR = log10(double(1./jetEMF - 1.));
76 }
77 }else{
78 LR = -999.;
79 }
81 }
82 }
83 if(collector){
84 const void*
address =
static_cast<const void*
>(
this);
85
86 std::stringstream ss0;
87 ss0 <<
"PileupRemovalCondition: (" <<
address <<
") "
88 <<
" LR desired cut, LR necessary cut to start pileup removal algo " <<
m_max<<
","<<
m_min
89 << " pass: " << std::boolalpha << pass << '\n';
90
91 auto j_addr =
static_cast<const void*
>(
ip.get());
92 std::stringstream ss1;
93 ss1 << " jet : ("<< j_addr << ")"
94 " LR desired cut, LR necessary cut to start pileup removal algo " <<
m_max<<
","<<
m_min<<
'\n';
95
96 collector->
collect(ss0.str(), ss1.str());
97
98 }
99 return pass;
100}
virtual void collect(const std::string &, const std::string &)=0
double getMomentValue(MomentType type) const
Retrieve individual moment - no check for existance! Returns -999 on error.
@ CENTER_LAMBDA
Shower depth at Cluster Centroid.
bool equal(double a, double b)
Compare two FP numbers, working around x87 precision issues.
bool less_equal(double a, double b)
Compare two FP numbers, working around x87 precision issues.
bool greater_equal(double a, double b)
Compare two FP numbers, working around x87 precision issues.
double deltaPhi(double phiA, double phiB)
delta Phi in range [-pi,pi[
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.