Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 energyOverMomentumTree = cms.EDAnalyzer('EopElecTreeWriter',
0004                                         src  = cms.InputTag('electronGsfTracks'),
0005                                         # HLT path to filter on
0006                                         triggerPath = cms.string("HLT_Ele"), # ("HLT_DiEle27_WPTightCaloOnly_L1DoubleEG_v4"),
0007                                         # take HLT objects from this filter
0008                                         hltFilter   = cms.string("hltDiEle27L1DoubleEGWPTightHcalIsoFilter"),
0009                                         # debug the trigger and filter selections
0010                                         debugTriggerSelection = cms.bool(False),
0011                                         # Lower threshold on track's momentum magnitude in GeV
0012                                         #PCut = cms.double(31.),#15.),
0013                                         # tag on Z mass width window, between MzMin and MzMax
0014                                         #MzMin = cms.double(60.),
0015                                         #MzMax = cms.double(120.),
0016                                         # Lower threshold on Ecal energy deposit considering the Energy of SuperCluster
0017                                         #EcalEnergyCut = cms.double(30.),#14.),
0018                                         # Upper threshold on Hcal energy deposit considering the Energy of 5x5 Calo cells
0019                                         #HcalEnergyCut = cms.double(3.),
0020                                         # Isolation criteria: no other track lying in a cone of differential
0021                                         # radius dRIso (in eta-phi plan) arround the considered track
0022                                         #dRIso = cms.double(0.1),
0023                                         # Isolation against neutral particles:
0024                                         # SCdRMatch: differential radius (eta-phi plan) used for track-SupClus matching
0025                                         # SCdRIso: between SCdRMatch and SCdRIso arround track, NO OTHER Super Cluster
0026                                         #SCdRMatch = cms.double(0.09),
0027                                         #SCdRIso = cms.double(0.2)
0028                                         )