forked from cms-btv-pog/RecoBTag-PerformanceMeasurements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplotEff.py
More file actions
26 lines (20 loc) · 809 Bytes
/
plotEff.py
File metadata and controls
26 lines (20 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import FWCore.ParameterSet.Config as cms
from RecoBTag.PerformanceMeasurements.OperatingPoints import *
plotEff = cms.EDAnalyzer("plotEff",
OperatingPoints31X,
plotEffbyMistagRate = cms.bool (True),
ApplyJetCorrections = cms.bool (True),
jetCorrectionsLabel = cms.string("L2L3JetCorrectorIC5Calo"),
jetcuts = cms.PSet(
MaxEta = cms.double(2.5),
MinPt = cms.double(30.0),
MinNtracks = cms.int32(1),
MinTrkPt = cms.double(1.),
MinNjets = cms.int32(1)
),
flavourSource = cms.InputTag('IC5byValAlgo'),
Jets = cms.string('iterativeCone5CaloJets'),
bTagTrackEventIPtagInfos = cms.string('impactParameterTagInfos'),
outputFile = cms.untracked.string('plotEff.root'),
debug = cms.untracked.bool (False)
)