Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 photonConvTrajSeedFromQuadruplets = cms.EDProducer("PhotonConversionTrajectorySeedProducerFromQuadruplets",
00004 TrackRefitter = cms.InputTag('TrackRefitter',''),
00005 primaryVerticesTag = cms.InputTag("offlinePrimaryVertices"),
00006 beamSpotInputTag = cms.InputTag("offlineBeamSpot"),
00007 newSeedCandidates = cms.string("conv2SeedCandidates"),
00008 xcheckSeedCandidates = cms.string("xcheckSeedCandidates"),
00009 DoxcheckSeedCandidates = cms.bool(False),
00010 OrderedHitsFactoryPSet = cms.PSet(
00011 maxElement = cms.uint32(900000),
00012 SeedingLayers = cms.string('conv2LayerPairs')
00013 ),
00014 SeedComparitorPSet = cms.PSet(
00015 ComponentName = cms.string('PixelClusterShapeSeedComparitor'),
00016 FilterAtHelixStage = cms.bool(True),
00017 FilterPixelHits = cms.bool(False),
00018 FilterStripHits = cms.bool(True),
00019 ClusterShapeHitFilterName = cms.string('ClusterShapeHitFilter')
00020 ),
00021 ClusterCheckPSet = cms.PSet(
00022 PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
00023 MaxNumberOfCosmicClusters = cms.uint32(50000),
00024 doClusterCheck = cms.bool(True),
00025 ClusterCollectionLabel = cms.InputTag("siStripClusters"),
00026 MaxNumberOfPixelClusters = cms.uint32(10000)
00027 ),
00028 RegionFactoryPSet = cms.PSet(
00029 RegionPSet = cms.PSet( precise = cms.bool(True),
00030 beamSpot = cms.InputTag("offlineBeamSpot"),
00031 originRadius = cms.double(3.0),
00032 ptMin = cms.double(0.2),
00033 originHalfLength = cms.double(12.0)
00034 ),
00035 ComponentName = cms.string('GlobalRegionProducerFromBeamSpot')
00036 ),
00037 SeedCreatorPSet = cms.PSet(
00038 ComponentName = cms.string('SeedForPhotonConversionFromQuadruplets'),
00039 SeedMomentumForBOFF = cms.double(5.0),
00040 propagator = cms.string('PropagatorWithMaterial')
00041 ),
00042 QuadCutPSet = cms.PSet(
00043 Cut_minLegPt = cms.double(0.6),
00044 Cut_maxLegPt = cms.double(10.),
00045 rejectAllQuads = cms.bool(False),
00046 apply_DeltaPhiCuts = cms.bool(True),
00047 apply_Arbitration = cms.bool(True),
00048 apply_ClusterShapeFilter = cms.bool(True),
00049 apply_zCACut = cms.bool(False),
00050 Cut_zCA = cms.double(100),
00051 Cut_DeltaRho = cms.double(12.),
00052 Cut_BeamPipeRadius = cms.double(3.)
00053 )
00054 )
00055
00056
00057
00058