CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/FastSimulation/Configuration/python/trackingTruthProducerFastSim_cfi.py

Go to the documentation of this file.
00001 # cloned from SimGeneral/MixingModule/python/trackingTruthProducer_cfi.py
00002 
00003 import FWCore.ParameterSet.Config as cms
00004 
00005 trackingParticles = cms.PSet(
00006     accumulatorType = cms.string('TrackingTruthAccumulator'),
00007     createUnmergedCollection = cms.bool(True),
00008     createMergedBremsstrahlung = cms.bool(True),
00009     alwaysAddAncestors = cms.bool(True),
00010     maximumPreviousBunchCrossing = cms.uint32(9999),
00011     maximumSubsequentBunchCrossing = cms.uint32(9999),
00012     simHitCollections = cms.PSet(
00013         muon = cms.VInputTag( cms.InputTag('MuonSimHits','MuonDTHits'),
00014                        cms.InputTag('MuonSimHits','MuonCSCHits'),
00015                        cms.InputTag('MuonSimHits','MuonRPCHits') ),
00016         trackerAndPixel = cms.VInputTag( cms.InputTag('famosSimHits','TrackerHits') )
00017     ),
00018     simTrackCollection = cms.InputTag('famosSimHits'),
00019     simVertexCollection = cms.InputTag('famosSimHits'),
00020     genParticleCollection = cms.InputTag('genParticles'),
00021     removeDeadModules = cms.bool(False), # currently not implemented
00022     volumeRadius = cms.double(120.0),
00023     volumeZ = cms.double(300.0),
00024     ignoreTracksOutsideVolume = cms.bool(False),
00025     allowDifferentSimHitProcesses = cms.bool(True) # should be True for FastSim, False for FullSim
00026     )
00027 
00028 # cloned from SimGeneral/MixingModule/python/trackingTruthProducerSelection_cfi.py
00029 
00030 trackingParticles.select = cms.PSet(
00031         lipTP = cms.double(1000),
00032         chargedOnlyTP = cms.bool(True),
00033         pdgIdTP = cms.vint32(),
00034         signalOnlyTP = cms.bool(True),
00035         stableOnlyTP = cms.bool(True), # this is different from the standard setting for FullSim
00036         minRapidityTP = cms.double(-2.6),
00037         minHitTP = cms.int32(3),
00038         ptMinTP = cms.double(0.2),
00039         maxRapidityTP = cms.double(2.6),
00040         tipTP = cms.double(1000)
00041         )