ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/python/conversions_cfi.py
Revision: 1.8
Committed: Mon Jan 18 14:41:33 2010 UTC (15 years, 3 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, Mit_013d, Mit_013c, Mit_013b, Mit_013a, Mit_013, Mit_013pre1, Mit_012i
Changes since 1.7: +3 -2 lines
Log Message:
Fix Track Paramater phi-related bugs and add consistent propagation to origin

File Contents

# Content
1 # $Id: conversions_cfi.py,v 1.7 2009/07/12 13:12:06 bendavid Exp $
2
3 import FWCore.ParameterSet.Config as cms
4
5 mvfConversions = cms.EDProducer("ProducerConversions",
6 iStables1 = cms.untracked.string('mergedElectronsStable'),
7 iStables2 = cms.untracked.string('mergedElectronsStable'),
8 iPVertexes = cms.untracked.string('offlinePrimaryVerticesWithBS'),
9 oPid = cms.untracked.int32(22),
10 usePVertex = cms.untracked.bool(True),
11 convConstraint = cms.untracked.bool(False),
12 convConstraint3D = cms.untracked.bool(True),
13 rhoMin = cms.untracked.double(0.9),
14 useRhoMin = cms.untracked.bool(True),
15 )
16
17 mvfTrackerConversions = mvfConversions.clone(
18 iStables1 = cms.untracked.string('generalElectronsStable'),
19 iStables2 = cms.untracked.string('generalElectronsStable'),
20 )