Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 L3MuonIsolationProducerPixTE = cms.EDProducer("L3MuonIsolationProducer",
0004     inputMuonCollection = cms.InputTag("hltL3Muons"),
0005     CutsPSet = cms.PSet(
0006         ConeSizes = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.24, 
0007             0.24, 0.24, 0.24, 0.24, 0.24, 
0008             0.24, 0.24, 0.24, 0.24, 0.24, 
0009             0.24, 0.24, 0.24, 0.24, 0.24, 
0010             0.24, 0.24, 0.24, 0.24, 0.24, 
0011             0.24),
0012         ComponentName = cms.string('SimpleCuts'),
0013         Thresholds = cms.vdouble(1.1, 1.1, 1.1, 1.1, 1.2, 
0014             1.1, 1.2, 1.1, 1.2, 1.0, 
0015             1.1, 1.0, 1.0, 1.1, 1.0, 
0016             1.0, 1.1, 0.9, 1.1, 0.9, 
0017             1.1, 1.0, 1.0, 0.9, 0.8, 
0018             0.1),
0019         maxNTracks = cms.int32(-1),
0020         EtaBounds = cms.vdouble(0.0435, 0.1305, 0.2175, 0.3045, 0.3915, 
0021             0.4785, 0.5655, 0.6525, 0.7395, 0.8265, 
0022             0.9135, 1.0005, 1.0875, 1.1745, 1.2615, 
0023             1.3485, 1.4355, 1.5225, 1.6095, 1.6965, 
0024             1.785, 1.88, 1.9865, 2.1075, 2.247, 
0025             2.411),
0026         # apply "sumPt < cut || nTracks <= maxNTracks" if set
0027         applyCutsORmaxNTracks = cms.bool(False)
0028     ),
0029     TrackPt_Min = cms.double(-1.0),
0030     OutputMuIsoDeposits = cms.bool(True),
0031     ExtractorPSet = cms.PSet(
0032         #this is expected to be bigger than DR_Veto set above by ~x2 or so
0033         DR_VetoPt = cms.double(0.025),
0034         # |vzTrack-vzMuon|
0035         Diff_z = cms.double(0.2),
0036         inputTrackCollection = cms.InputTag("hltPixelTracks"),
0037         ReferenceRadius = cms.double(6.0),
0038         # inputtag for the beam spot object
0039         BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
0040         ComponentName = cms.string('PixelTrackExtractor'),
0041         # maximal distance from muon direction to count tracks
0042         DR_Max = cms.double(0.24),
0043         #double Pt_Min = 0.9
0044         # |d0| cut on tracks going to the sum
0045         Diff_r = cms.double(0.1),
0046         #track eta,phi will be taken at this radius (in cm) if set to true
0047         PropagateTracksToRadius = cms.bool(True),
0048         # count track if chi2-prob is >= this
0049         Chi2Prob_Min = cms.double(-1.0),
0050         # do not count within DR_Veto away from this direction
0051         DR_Veto = cms.double(0.01),
0052         # count track if nValidHits >= this
0053         NHits_Min = cms.uint32(0),
0054         # count track if chi2/ndf < this
0055         Chi2Ndof_Max = cms.double(1e+64),
0056         # count track if its pt >= this
0057         Pt_Min = cms.double(-1.0),
0058         DepositLabel = cms.untracked.string('PXLS'),
0059         # this is pretty much the only one: read from edm::Event
0060         BeamlineOption = cms.string('BeamSpotFromEvent'),
0061         #the veto will be set to the leading track above threshold in this cone
0062         VetoLeadingTrack = cms.bool(True),
0063         PtVeto_Min = cms.double(2.0)
0064     )
0065 )
0066 
0067 
0068