ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/python/v2ss_cfi.py
Revision: 1.3
Committed: Mon Nov 3 13:45:08 2008 UTC (16 years, 6 months ago) by mrudolph
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a, Mit_006
Changes since 1.2: +5 -5 lines
Log Message:
Slight tightening of preselection cuts to remove unnecessary background.

File Contents

# User Rev Content
1 mrudolph 1.3 # $Id: v2ss_cfi.py,v 1.2 2008/10/03 23:53:51 loizides Exp $
2 loizides 1.2
3 mrudolph 1.1 import FWCore.ParameterSet.Config as cms
4    
5     v2ss = cms.EDProducer("ProducerV2SS",
6     iStables1 = cms.untracked.string('PisStable'),
7     iStables2 = cms.untracked.string('PisStable'),
8     oPid = cms.untracked.int32(310),
9 mrudolph 1.3 minRadius = cms.untracked.double(0.3),
10     minMass = cms.untracked.double(0.380),
11     maxMass = cms.untracked.double(0.620),
12     maxZDistance = cms.untracked.double(0.5)
13 mrudolph 1.1 )