97 |
|
// |
98 |
|
// prototypes |
99 |
|
//---------------------------------------------------------------------------- |
100 |
– |
bool setPV(ControlFlags,const mithep::Array<mithep::Vertex>*, mithep::Vertex& ); |
100 |
|
void initPUWeights(); |
101 |
|
double getPUWeight(unsigned npu); |
102 |
|
void setEffiencyWeights(EventData&, WeightStruct& ); |
104 |
|
void initEvtRhoMap(map<unsigned,float> &); |
105 |
|
unsigned makePFnoPUArray(mithep::Array<PFCandidate> * fPFCandidates, |
106 |
|
vector<bool> &pfNoPileUpFlag, |
107 |
< |
mithep::Array<Vertex> * vtxArr ); |
107 |
> |
const mithep::VertexCol * vtxArr ); |
108 |
|
//---------------------------------------------------------------------------- |
109 |
|
|
110 |
|
|
116 |
|
{ |
117 |
|
cutstrs.push_back(string("skim0")); //0 |
118 |
|
cutstrs.push_back(string("skim1")); //1 |
119 |
+ |
cutstrs.push_back(string("skim2")); //1 |
120 |
|
cutstrs.push_back(string("trigger")); //2 |
121 |
|
// ------------------------------------------------- |
122 |
|
cutstrs.push_back(string("Z candidate")); //3 |
128 |
|
cutstrs.push_back(string("ZZ 20/10")); //8 |
129 |
|
cutstrs.push_back(string("resonance")); //9 |
130 |
|
cutstrs.push_back(string("m4l>70")); //10 |
131 |
< |
cutstrs.push_back(string("m4l>100")); //11 |
131 |
> |
cutstrs.push_back(string("m4l>100, mZ2 > 12")); //11 |
132 |
|
|
133 |
|
|
134 |
|
|
268 |
|
// mithep::TGenInfo *ginfo = new mithep::TGenInfo(); |
269 |
|
mithep::Array<mithep::Electron> *electronArr = new mithep::Array<mithep::Electron>(); |
270 |
|
mithep::Array<mithep::Muon> *muonArr = new mithep::Array<mithep::Muon>(); |
271 |
< |
mithep::Array<mithep::Vertex> *vtxArr = new mithep::Array<mithep::Vertex>(); |
271 |
> |
const mithep::VertexCol *vtxArr = 0;//new mithep::Array<mithep::Vertex>(); |
272 |
|
mithep::Array<mithep::PFCandidate> *pfArr = new mithep::Array<mithep::PFCandidate>(); |
273 |
|
mithep::Array<mithep::PileupInfo> *puArr = new mithep::Array<mithep::PileupInfo>(); |
274 |
|
mithep::Array<mithep::PileupEnergyDensity> *puDArr = new mithep::Array<mithep::PileupEnergyDensity>(); |
365 |
|
*/ |
366 |
|
|
367 |
|
if(!(ientry%1000)) cerr << "entry: " << ientry << endl; |
368 |
– |
setPV( ctrl, vtxArr, vtx); |
368 |
|
//if (!(setPV( ctrl, vtxArr, vtx)) ) continue; |
369 |
|
|
370 |
|
float rho = evtrhoMap[info->EvtNum()]; |
384 |
|
// |
385 |
|
// xsec & PU weights |
386 |
|
// |
387 |
< |
weights.w = getWeight(xstab,entrymap,chain)/ctrl.totalMC; |
387 |
> |
weights.w = 1;//getWeight(xstab,entrymap,chain)/ctrl.totalMC; |
388 |
|
cout << "xsec weight: " << weights.w << endl; |
389 |
|
int npu = -1; |
390 |
|
for(int i=0;i<puArr->GetEntries();i++) { |
451 |
|
|
452 |
|
|
453 |
|
// reference |
455 |
– |
/* |
454 |
|
apply_HZZ4L_reference2_selection(ctrl, info, |
455 |
< |
vtx, |
455 |
> |
vtxArr, |
456 |
|
pfArr, |
457 |
< |
//rho, |
457 |
> |
#ifdef HACKED_RHOS |
458 |
> |
rho, |
459 |
> |
#else |
460 |
|
puDArr, |
461 |
+ |
#endif |
462 |
|
electronArr, |
463 |
|
&electronReferencePreSelection, |
464 |
< |
&electronReferenceIDMVASelection, |
464 |
> |
&electronReferenceIDMVASelectionV1, |
465 |
|
&electronReferenceIsoSelection, |
466 |
|
muonArr, |
467 |
|
&muonReferencePreSelection, |
468 |
|
&muonIDPFSelection, |
469 |
|
&muonReferenceIsoSelection); |
469 |
– |
*/ |
470 |
|
|
471 |
+ |
/* |
472 |
|
// evolved |
473 |
|
apply_HZZ4L_reference2_selection(ctrl, info, |
474 |
|
vtx, |
485 |
|
//&muonPreSelection, |
486 |
|
&muonIDPFSelection, |
487 |
|
&muonIsoMVASelection); |
488 |
< |
|
488 |
> |
*/ |
489 |
|
|
490 |
|
if( ctrl.debug ) cout << endl; |
491 |
|
|
582 |
|
|
583 |
|
} |
584 |
|
|
584 |
– |
//---------------------------------------------------------------------------- |
585 |
– |
// |
586 |
– |
// Get primary vertices |
587 |
– |
// Assumes primary vertices are ordered by sum-pT^2 (as should be in CMSSW) |
588 |
– |
// NOTE: if no PV is found from fitting tracks, the beamspot is used |
589 |
– |
// |
590 |
– |
//---------------------------------------------------------------------------- |
591 |
– |
bool setPV(ControlFlags ctrl, |
592 |
– |
const mithep::Array<mithep::Vertex> * vtxArr, |
593 |
– |
mithep::Vertex & vtx) |
594 |
– |
//---------------------------------------------------------------------------- |
595 |
– |
{ |
596 |
– |
const Vertex *bestPV = 0; |
597 |
– |
float best_sumpt=-1; |
598 |
– |
|
599 |
– |
// good PV requirements |
600 |
– |
const UInt_t fMinNTracksFit = 0; |
601 |
– |
const Double_t fMinNdof = 4; |
602 |
– |
const Double_t fMaxAbsZ = 24; |
603 |
– |
const Double_t fMaxRho = 2; |
604 |
– |
|
605 |
– |
for(int i=0; i<vtxArr->GetEntries(); ++i) { |
606 |
– |
const Vertex *pv = (Vertex*)(vtxArr->At(i)); |
607 |
– |
if( ctrl.debug ) cout << "vertex :: " << i << "\tntrks: " << pv->NTracks() << endl; |
608 |
– |
|
609 |
– |
// Select best PV for corrected d0; if no PV passing cuts, the first PV in the collection will be used |
610 |
– |
if(!pv->IsValid()) continue; |
611 |
– |
if(pv->NTracksFit() < fMinNTracksFit) continue; |
612 |
– |
if(pv->Ndof() < fMinNdof) continue; |
613 |
– |
if(fabs(pv->Z()) > fMaxAbsZ) continue; |
614 |
– |
if(pv->Position().Rho() > fMaxRho) continue; |
615 |
– |
|
616 |
– |
// take the first ... |
617 |
– |
bestPV = pv; |
618 |
– |
break; |
619 |
– |
|
620 |
– |
// this never reached ... |
621 |
– |
float tmp_sumpt=0; |
622 |
– |
for( int t=0; t<pv->NTracks(); t++ ) |
623 |
– |
tmp_sumpt += pv->Trk(t)->Pt(); |
624 |
– |
|
625 |
– |
if( tmp_sumpt > best_sumpt ) { |
626 |
– |
bestPV = pv; |
627 |
– |
best_sumpt = tmp_sumpt; |
628 |
– |
if( ctrl.debug) cout << "new PV set, pt : " << best_sumpt << endl; |
629 |
– |
} |
630 |
– |
} |
631 |
– |
// sync |
632 |
– |
if(!bestPV) bestPV = vtxArr->At(0); |
633 |
– |
//if(!bestPV) return false; |
634 |
– |
vtx.SetPosition(bestPV->X(),bestPV->Y(),bestPV->Z()); |
635 |
– |
vtx.SetErrors(bestPV->XErr(),bestPV->YErr(),bestPV->ZErr()); |
636 |
– |
return true; |
637 |
– |
}; |
638 |
– |
|
585 |
|
|
586 |
|
|
587 |
|
//---------------------------------------------------------------------------- |
674 |
|
cout << "initialzing EvtRhoMap "; |
675 |
|
//FILE * f = fopen("evtrho.dat", "r"); |
676 |
|
// FILE * f = fopen("allrho.cali.uniq.dat", "r"); |
677 |
< |
FILE * f = fopen("allrhoAA.cali.uniq.dat", "r"); |
677 |
> |
FILE * f = fopen("/data/blue/khahn/CMSSW_4_4_2/src/MitHzz4l/allrhoAA.cali.uniq.dat", "r"); |
678 |
|
int lcount=0; |
679 |
|
while( fscanf( f, "%u:%f", &evt, &rho ) ) { |
680 |
|
if( feof(f) ) break; |
688 |
|
//---------------------------------------------------------------------------- |
689 |
|
unsigned makePFnoPUArray(mithep::Array<PFCandidate> * fPFCandidates, |
690 |
|
vector<bool> &pfNoPileUpflag, |
691 |
< |
mithep::Array<Vertex> * vtxArr ) |
691 |
> |
const mithep::VertexCol * vtxArr ) |
692 |
|
//---------------------------------------------------------------------------- |
693 |
|
{ |
694 |
|
for(UInt_t i = 0; i < fPFCandidates->GetEntries(); i++) { |