CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
globalrechits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 globalrechits = cms.EDProducer("GlobalRecHitsProducer",
4  MuDTSrc = cms.InputTag("dt1DRecHits"),
5  SiPxlSrc = cms.InputTag("siPixelRecHits"),
6  # 1 provides basic output
7  # 2 provides output of the fill step + 1
8  # 3 provides output of the store step + 2
9  Label = cms.string('GlobalRecHits'),
10  associateRecoTracks = cms.bool(False),
11  MuDTSimSrc = cms.InputTag("g4SimHits","MuonDTHits"),
12  # needed for TrackerHitAssociator
13  associatePixel = cms.bool(True),
14  ROUList = cms.vstring('TrackerHitsTIBLowTof',
15  'TrackerHitsTIBHighTof',
16  'TrackerHitsTIDLowTof',
17  'TrackerHitsTIDHighTof',
18  'TrackerHitsTOBLowTof',
19  'TrackerHitsTOBHighTof',
20  'TrackerHitsTECLowTof',
21  'TrackerHitsTECHighTof',
22  'TrackerHitsPixelBarrelLowTof',
23  'TrackerHitsPixelBarrelHighTof',
24  'TrackerHitsPixelEndcapLowTof',
25  'TrackerHitsPixelEndcapHighTof'),
26  MuRPCSrc = cms.InputTag("rpcRecHits"),
27  ECalEESrc = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
28  MuRPCSimSrc = cms.InputTag("g4SimHits","MuonRPCHits"),
29  SiStripSrc = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
30  HCalSrc = cms.InputTag("g4SimHits","HcalHits"),
31  ECalESSrc = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
32  ECalUncalEESrc = cms.InputTag("ecalWeightUncalibRecHit","EcalUncalibRecHitsEE"),
33  Name = cms.untracked.string('GlobalRecHitsProducer'),
34  Verbosity = cms.untracked.int32(0), ## 0 provides no output
35 
36  associateStrip = cms.bool(True),
37  # as of 110p2, needs to be 1. Anything ealier should be 0.
38  VtxUnit = cms.untracked.int32(1),
39  ECalUncalEBSrc = cms.InputTag("ecalWeightUncalibRecHit","EcalUncalibRecHitsEB"),
40  MuCSCSrc = cms.InputTag("csc2DRecHits"),
41  # 1 assumes cm in SimVertex
42  ProvenanceLookup = cms.PSet(
43  PrintProvenanceInfo = cms.untracked.bool(False),
44  GetAllProvenances = cms.untracked.bool(False)
45  ),
46  Frequency = cms.untracked.int32(50),
47  ECalEBSrc = cms.InputTag("ecalRecHit","EcalRecHitsEB")
48 )
49 
50