CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoTracker/ConversionSeedGenerators/python/PhotonConversionTrajectorySeedProducerFromSingleLeg_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 photonConvTrajSeedFromSingleLeg  = cms.EDProducer("PhotonConversionTrajectorySeedProducerFromSingleLeg",
00004                                                   TrackRefitter        = cms.InputTag('TrackRefitter',''),
00005                                                   primaryVerticesTag   = cms.InputTag("offlinePrimaryVertices"),
00006                                                   beamSpotInputTag     = cms.InputTag("offlineBeamSpot"),
00007                                                   newSeedCandidates    = cms.string("convSeedCandidates"),
00008                                                   xcheckSeedCandidates = cms.string("xcheckSeedCandidates"),
00009                                                   vtxMinDoF            = cms.double(4),
00010                                                   maxDZSigmas          = cms.double(10.),
00011                                                   maxNumSelVtx         = cms.uint32(2),
00012                                                   applyTkVtxConstraint = cms.bool(True),
00013                                                   
00014                                                   DoxcheckSeedCandidates = cms.bool(False),
00015                                                   OrderedHitsFactoryPSet = cms.PSet(
00016                                                       maxHitPairsPerTrackAndGenerator = cms.uint32(10),
00017                                                       maxElement = cms.uint32(10000),
00018                                                       SeedingLayers = cms.string('convLayerPairs')
00019                                                       ),
00020                                                   SeedComparitorPSet = cms.PSet(
00021                                                       ComponentName = cms.string('none')
00022                                                       ),
00023                                                   ClusterCheckPSet = cms.PSet(
00024                                                       PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
00025                                                       MaxNumberOfCosmicClusters = cms.uint32(150000),
00026                                                       doClusterCheck = cms.bool(True),
00027                                                       ClusterCollectionLabel = cms.InputTag("siStripClusters"),
00028                                                       MaxNumberOfPixelClusters = cms.uint32(20000),
00029                                                       cut = cms.string("strip < 150000 && pixel < 20000 && (strip < 20000 + 7* pixel)"),
00030                                                       ),
00031                                                   RegionFactoryPSet = cms.PSet(
00032                                                       RegionPSet = cms.PSet( precise = cms.bool(True),
00033                                                                              beamSpot = cms.InputTag("offlineBeamSpot"),
00034                                                                              originRadius = cms.double(3.0),
00035                                                                              ptMin = cms.double(0.2),
00036                                                                              originHalfLength = cms.double(12.0)
00037                                                                              ),
00038                                                       ComponentName = cms.string('GlobalRegionProducerFromBeamSpot')
00039                                                       ),
00040                                                   SeedCreatorPSet = cms.PSet(
00041                                                       ComponentName = cms.string('SeedForPhotonConversion1Leg'),
00042                                                       SeedMomentumForBOFF = cms.double(5.0),
00043                                                       propagator = cms.string('PropagatorWithMaterial')
00044                                                       )
00045                                                   )