ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/python/vProducerNoRefit_cff.py
Revision: 1.3
Committed: Fri Oct 3 23:53:51 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_006b, Mit_006a, Mit_006, Mit_005
Changes since 1.2: +2 -0 lines
Log Message:
Cosmetics and coding conventions.

File Contents

# User Rev Content
1 loizides 1.3 # $Id:$
2    
3 mrudolph 1.1 import FWCore.ParameterSet.Config as cms
4    
5     import MitEdm.Producers.stableParts_cfi
6    
7     PisStable = MitEdm.Producers.stableParts_cfi.stableParts.clone()
8    
9     ProtonsStable = MitEdm.Producers.stableParts_cfi.stableParts.clone()
10     ProtonsStable.oPid = cms.untracked.int32(2212)
11    
12     import MitEdm.Producers.v2ss_cfi
13     Ksh2PiPi = MitEdm.Producers.v2ss_cfi.v2ss.clone()
14    
15     Lambda2ProtPi = MitEdm.Producers.v2ss_cfi.v2ss.clone()
16     Lambda2ProtPi.iStables2 = cms.untracked.string('ProtonsStable')
17     Lambda2ProtPi.oPid= cms.untracked.int32(3122)
18     Lambda2ProtPi.minMass = cms.untracked.double(1.0)
19     Lambda2ProtPi.maxMass = cms.untracked.double(1.3)
20    
21    
22 mrudolph 1.2 vProducer = cms.Sequence(PisStable*ProtonsStable*Ksh2PiPi*Lambda2ProtPi)