CMS 3D CMS Logo

Functions | Variables
customiseL1CustomReco Namespace Reference

Functions

def getJECFromSQLite (process)
 
def L1NtupleCustomReco (process)
 

Variables

 dataFormat
 Custom E/Gamma reco ####. More...
 
 egmGsfElectronIDSequence
 
 idmod
 
 l1CustomReco
 
 muons
 Custom Jet reco ####. More...
 
 PFCandidates
 

Function Documentation

◆ getJECFromSQLite()

def customiseL1CustomReco.getJECFromSQLite (   process)

Definition at line 71 of file customiseL1CustomReco.py.

71 def getJECFromSQLite(process):
72 
73  process.load("CondCore.CondDB.CondDB_cfi")
74 
75  process.jec = cms.ESSource(
76  "PoolDBESSource",
77  DBParameters = cms.PSet(
78  messageLevel = cms.untracked.int32(0)
79  ),
80  timetype = cms.string('runnumber'),
81  toGet = cms.VPSet(
82  cms.PSet(
83  record = cms.string('JetCorrectionsRecord'),
84  # for data
85  tag = cms.string('JetCorrectorParametersCollection_Summer15_25nsV6_DATA_AK4PFchs'),
86  # for MC
87  #tag = cms.string('JetCorrectorParametersCollection_Fall15_25nsV2_MC_AK4PFchs'),
88  label = cms.untracked.string('AK4PFCHS')
89  ),
90  ),
91  connect = cms.string('sqlite:Summer15_25nsV6_DATA.db')
92  # uncomment above tag lines and this comment to use MC JEC
93  # connect = cms.string('sqlite:Fall15_25nsV2_MC.db')
94  )
95 
96  process.es_prefer_jec = cms.ESPrefer('PoolDBESSource','jec')
97 
98  return process

◆ L1NtupleCustomReco()

def customiseL1CustomReco.L1NtupleCustomReco (   process)

Definition at line 9 of file customiseL1CustomReco.py.

9 def L1NtupleCustomReco(process):
10 
11 

Referenced by customiseL1Ntuple.L1NtupleAOD(), and customiseL1Ntuple.L1NtupleAODCalo().

Variable Documentation

◆ dataFormat

customiseL1CustomReco.dataFormat

Custom E/Gamma reco ####.

Definition at line 44 of file customiseL1CustomReco.py.

◆ egmGsfElectronIDSequence

customiseL1CustomReco.egmGsfElectronIDSequence

Definition at line 47 of file customiseL1CustomReco.py.

◆ idmod

customiseL1CustomReco.idmod

Definition at line 49 of file customiseL1CustomReco.py.

◆ l1CustomReco

customiseL1CustomReco.l1CustomReco

Definition at line 55 of file customiseL1CustomReco.py.

◆ muons

customiseL1CustomReco.muons

Custom Jet reco ####.

Custom Met Filter reco

Definition at line 31 of file customiseL1CustomReco.py.

◆ PFCandidates

customiseL1CustomReco.PFCandidates

Definition at line 32 of file customiseL1CustomReco.py.

customiseL1CustomReco.L1NtupleCustomReco
def L1NtupleCustomReco(process)
Definition: customiseL1CustomReco.py:9
customiseL1CustomReco.getJECFromSQLite
def getJECFromSQLite(process)
Definition: customiseL1CustomReco.py:71