CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NuclearInteraction_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # Primary trajectories producer
4 
5 # Nuclear seeds producer
6 
7 # Secondary tracks producer
8 
9 import FWCore.ParameterSet.Config as cms
10 
11 nuclearInteractionMaker = cms.EDProducer("NuclearInteractionEDProducer",
12  seedsProducer = cms.string('nuclearSeed'),
13  # chi2 cut on secondary tracks
14  chi2Cut = cms.double(100.0),
15  # Minimum distance between primary and secondary tracks
16  # all secondary tracks with distance > minDistFromPrimary
17  # are rejected
18  minDistFromPrimary = cms.double(100.0),
19  secondaryProducer = cms.string('nuclearWithMaterialTracks'),
20  primaryProducer = cms.string('TrackRefitter')
21 )
22 
23