Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions comparisons/matrix_RE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,17 @@ TTbar14TeV2021wf11634p0 11634.0_TTbar_14TeV+*2021*/step3.root RECO
ProdTTbar14TeV2021wf11634p21 11634.21_TTbar_14TeV+2021*ProdLike*/step3.root RECO
ProdTTbar14TeV2021miniAODwf11634p21 11634.21_TTbar_14TeV+*2021*ProdLike*/step4.root PAT
TTbar14TeV2021wf11634p7 11634.7_TTbar_14TeV+*2021*/step3.root RECO
TTbarFS14TeV2021wf11634p301 11634.301_TTbar_14TeV+*2021*FS*/step1.root RECO
TTbar14TeV2021pixelCPUwf11634p501 11634.501_TTbar_14TeV+*2021*PixelOnlyCPU*/step3.root RECO
TTbar14TeV2021pixelGPUwf11634p502 11634.502_TTbar_14TeV+*2021*PixelOnlyGPU*/step3.root RECO
TTbar14TeV2021pixelGPUValwf11634p503 11634.503_TTbar_14TeV+*2021*PixelOnlyGPU_Val*/step3.root RECO
TTbar14TeV2021pixel3GPUwf11634p506 11634.506_TTbar_14TeV+*2021*PixelOnlyTripletsGPU*/step3.root RECO
TTbar14TeV2021ecalCPUwf11634p511 11634.511_TTbar_14TeV+*2021*ECALOnlyCPU*/step3.root RECO
TTbar14TeV2021ecalGPUwf11634p512 11634.512_TTbar_14TeV+*2021*ECALOnlyGPU*/step3.root RECO
TTbar14TeV2021hcalCPUwf11634p521 11634.521_TTbar_14TeV+*2021*HCALOnlyCPU*/step3.root RECO
TTbar14TeV2021hcalGPUwf11634p522 11634.522_TTbar_14TeV+*2021*HCALOnlyGPU*/step3.root RECO
TTbar14TeV2021allGPUValwf11634p583 11634.583_TTbar_14TeV+*2021*AllGPU_Val*/step3.root RECO
TTbar14TeV2021allTripGPUValwf11634p587 11634.587_TTbar_14TeV+*2021*AllTripletsGPU_Val*/step3.root RECO
TTbar14TeV2021DD4wf11634p911 11634.911_TTbar_14TeV+*2021*DD4*/step3.root RECO
TTbar14TeV2021DD4DBwf11634p912 11634.912_TTbar_14TeV+*2021*DD4hepDB*/step3.root RECO
TTbar14TeV2021DDDBwf11634p914 11634.914_TTbar_14TeV+*2021*DDDDB*/step3.root RECO
Expand Down
8 changes: 7 additions & 1 deletion comparisons/validate.C
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ void validateEvents(TString step, TString file, TString refFile, TString r="RECO

//Check if it's a NANOEDM
if (checkBranchAND("nanoaodFlatTable_muonTable__"+recoS+".")){
const int nTabs = 66;
const int nTabs = 68;
TString tNames[nTabs] = {
"btagWeightTable_", //0
"caloMetTable_", //1
Expand Down Expand Up @@ -1716,6 +1716,9 @@ void validateEvents(TString step, TString file, TString refFile, TString r="RECO
"fsrTable_", //63
"genWeightsTable_LHEReweighting", //64
"rivetPhotonTable_", //65
//
"beamSpotTable_", //66
"genProtonTable_", //67
};
for (int iT = 0; iT < nTabs; ++iT){
flatTable(tNames[iT]);
Expand Down Expand Up @@ -2754,6 +2757,7 @@ void validateEvents(TString step, TString file, TString refFile, TString r="RECO
siPixelClusters("siPixelClusters_");
siPixelClusters("muonReducedTrackExtras_");
siPixelClusters("slimmedMuonTrackExtras_");
siPixelClusters("displacedMuonReducedTrackExtras_");

tbr="Phase2TrackerCluster1DedmNewDetSetVector_siPhase2Clusters__"+recoS+".obj";
if (checkBranchOR(tbr, true)){
Expand Down Expand Up @@ -3134,6 +3138,7 @@ void validateEvents(TString step, TString file, TString refFile, TString r="RECO
}

muonVars("muons_");
muonVars("displacedMuons_");

tbr="recoCaloMuons_calomuons__"+recoS+".obj";
if (checkBranchOR(tbr, true)){
Expand Down Expand Up @@ -3185,6 +3190,7 @@ void validateEvents(TString step, TString file, TString refFile, TString r="RECO
muonVars("muonsFromCosmics1Leg_");
// miniaod
muonVars("slimmedMuons_","patMuons_");
muonVars("slimmedDisplacedMuons_","patMuons_");
}

if ((stepContainsNU(step, "all") || stepContainsNU(step, "tau")) && !stepContainsNU(step, "cosmic") && !stepContainsNU(step, "NoTaus")){
Expand Down