-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trigger matching #193
trigger matching #193
Conversation
…otop-my_v Conflicts: CatAnalyzer/test/h2muDraw.py
|
||
public: | ||
static float deltaR(float e1,float p1,float e2,float p2); | ||
static float deltaR(reco::LeafCandidate & l1, reco::LeafCandidate & l2){return deltaR(l1.eta(),l1.phi(),l2.eta(),l2.phi());} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are standard deltaR function in the CMSSW. why don't you use it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep ok
by keeping only the electron and muon patTriggerObjectStandAlones we save a lot of space patTriggerObjectStandAlones_selectedPatTrigger__PAT. 12642.8 1827.79 |
"HLT_TkMu", "HLT_IsoMu", "HLT_IsoTkMu", "HLT_DoubleIsoMu"
good to see trigger info without restriction 👍 |
This PR changes how to store trigger results and objects in CATTools. Dataformat is changed to use standard objects defined in PAT. Event size is reduced by selecting muon and electron triggers only - this is enough in quark analyses covered in Korean group. Next production is expected with this new trigger info format. There are other h2mumu analysis code changes in this PR which is independent of the central production.
added patTriggerObjectStandAlones for trigger matching
plus updates to h2mu analysis