[ae1d49f] | 1 | #configuration of the ControlPlot machinery
|
---|
| 2 |
|
---|
| 3 | from collections import namedtuple
|
---|
| 4 | controlPlot = namedtuple("controlPlot", ["label","module","classname","kwargs"])
|
---|
| 5 | eventCollection = namedtuple("eventCollection",["label","collection"])
|
---|
| 6 | eventProducer = namedtuple("eventProducer", ["label","module","function","kwargs"])
|
---|
| 7 | eventWeight = namedtuple("eventWeight", ["label","module","classname","kwargs"])
|
---|
| 8 |
|
---|
| 9 | class configuration:
|
---|
| 10 | # default I/O
|
---|
| 11 | defaultFilename = "controlPlots_ttbar"
|
---|
| 12 | RDSname = "rds_delphes_ttbar"
|
---|
| 13 | WSname = "workspace_ras_ttbar"
|
---|
| 14 |
|
---|
| 15 | # mode: plots or dataset
|
---|
| 16 | runningMode = "plots"
|
---|
| 17 | #runningMode = "dataset"
|
---|
| 18 |
|
---|
| 19 | # event selection class
|
---|
| 20 | eventSelection = "TtbarEventSelection"
|
---|
| 21 |
|
---|
| 22 | # control plot classes
|
---|
| 23 | controlPlots = [ controlPlot("selection","EventSelectionControlPlots","EventSelectionControlPlots", { }),
|
---|
| 24 | controlPlot("leptons","LeptonControlPlots","LeptonControlPlots", { }),
|
---|
| 25 | controlPlot("jets","JetControlPlots","JetControlPlots", { }),
|
---|
| 26 | controlPlot("top","TopControlPlots","TopControlPlots", { })
|
---|
| 27 | ]
|
---|
| 28 |
|
---|
| 29 | # event content: lists of eventCollection, eventProducer, and eventWeight objects respectively.
|
---|
| 30 | eventCollections = [ eventCollection("genEvent","Event"),
|
---|
| 31 | eventCollection("muons","Muon"),
|
---|
| 32 | eventCollection("electrons","Electron"),
|
---|
| 33 | eventCollection("jets","Jet"),
|
---|
| 34 | eventCollection("MEt","MissingET")
|
---|
| 35 | ]
|
---|
| 36 | eventProducers = [ eventProducer("category","TtbarEventSelection","eventCategory",{ }),
|
---|
| 37 | eventProducer("selectedJets","TopReconstruction","jetSelection",{ "ptcut":20., "etacut":2.4 }),
|
---|
| 38 | eventProducer("bJets","TopReconstruction","bjets",{}),
|
---|
| 39 | eventProducer("lJets","TopReconstruction","ljets",{}),
|
---|
| 40 | eventProducer("topCandidates_L","TopReconstruction","topCandidates",{"leptonic":True,"hadronic":False}),
|
---|
| 41 | eventProducer("topCandidates_H","TopReconstruction","topCandidates",{"leptonic":False,"hadronic":True}),
|
---|
| 42 | eventProducer("topPairCandidates","TopReconstruction","topCandidates",{"leptonic":True,"hadronic":True})
|
---|
| 43 | ]
|
---|
| 44 | eventWeights = [ ]
|
---|
| 45 |
|
---|
| 46 | class eventDumpConfig:
|
---|
| 47 | # fine-tuning of the event content for display
|
---|
| 48 | productsToPrint = [ "category", "topPairCandidates" ] # list of product to display (use the producer label)
|
---|
| 49 | collectionsToHide = [ ] # collections used in the analysis but not printed (use the collection label)
|
---|
| 50 |
|
---|