CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonMillepedeAlgorithm_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # parameters for MuonMillepedeeAlgorithm
4 MuonMillepedeAlgorithm = cms.PSet(
5  algoName = cms.string('MuonMillepedeAlgorithm'),
6  CollectionFile = cms.string('Resultado.root'),
7  isCollectionJob = cms.bool(False),
8  collectionPath = cms.string("./job"),
9  collectionNumber = cms.int32(2),
10  outputCollName = cms.string("FinalResult.root"),
11  ptCut = cms.double(10.0),
12  chi2nCut = cms.double(5.0)
13 )
14