CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoMET/METProducers/python/CSCHaloData_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 # File: CSCHaloData_cfi.py
00003 # Original Author: R. Remington, The University of Florida
00004 # Description: Module to build CSCHaloData and put into the event
00005 # Date: Oct. 15, 2009
00006 
00007 CSCHaloData = cms.EDProducer("CSCHaloDataProducer",
00008                           
00009                              # Digi Level
00010                              L1MuGMTReadoutLabel = cms.InputTag("gtDigis"),
00011                              
00012                              # HLT
00013                              HLTResultLabel = cms.InputTag("TriggerResults::HLT"),
00014                              HLTBitLabel = cms.VInputTag(    cms.InputTag("HLT_CSCBeamHalo"),
00015                                                              cms.InputTag("HLT_CSCBeamHaloOverlapRing1"),
00016                                                              cms.InputTag("HLT_CSCBeamHaloOverlapRing2"),
00017                                                              cms.InputTag("HLT_CSCBeamHaloRing2or3")
00018                                                              ),
00019                              
00020                              # Chamber Level Trigger Primitive                             
00021                              ALCTDigiLabel = cms.InputTag("muonCSCDigis","MuonCSCALCTDigi"),
00022 
00023                              # RecHit Level
00024                              CSCRecHitLabel = cms.InputTag("csc2DRecHits"),
00025                              
00026                              # Higher Level Reco
00027                              CSCSegmentLabel= cms.InputTag("cscSegments"),
00028                              CosmicMuonLabel= cms.InputTag("cosmicMuons"),
00029                              MuonLabel = cms.InputTag("muons"),
00030                              SALabel  =  cms.InputTag("standAloneMuons"),
00031 
00032                              DetaParam = cms.double(0.1),
00033                              DphiParam = cms.double(1.00),
00034                              NormChi2Param = cms.double(8.),
00035                              InnerRMinParam = cms.double(0.),
00036                              OuterRMinParam = cms.double(0.),
00037                              InnerRMaxParam = cms.double(99999.),
00038                              OuterRMaxParam = cms.double(99999.),
00039 
00040                              MinOuterMomentumTheta = cms.double(.10),
00041                              MaxOuterMomentumTheta = cms.double(3.0),
00042                              MatchingDPhiThreshold = cms.double(0.18),
00043                              MatchingDEtaThreshold = cms.double(0.4),
00044                              MatchingDWireThreshold = cms.int32(5),
00045                              # The expected time of a collision recHit will be t = time_0 + time-of-flight
00046                              # A recHit more than +/- time_window from collision timing will be declared "out-of-time"                      
00047                              # recHit times are in [ns]
00048                              RecHitTime0 = cms.double(0.), 
00049                              RecHitTimeWindow = cms.double(25.),
00050 
00051                              # If this is Data, the expected collision bx will be 3 instead of 6
00052                              #ExpectedBX = cms.int32(3)   # if Data
00053                              ExpectedBX = cms.int32(6)   # if MC
00054                              )