File indexing completed on 2024-04-06 11:56:38
0001 import FWCore.ParameterSet.Config as cms
0002 from FWCore.ParameterSet.VarParsing import VarParsing
0003
0004 options = VarParsing ("analysis")
0005 options.parseArguments()
0006
0007 process = cms.Process("ZMuMuMassConstraintParameterFinder")
0008
0009 process.load("FWCore.MessageService.MessageLogger_cfi")
0010 process.MessageLogger.cerr.FwkReport.reportEvery = 1000
0011
0012 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
0013
0014 process.source = cms.Source(
0015 "PoolSource",
0016 fileNames = cms.untracked.vstring(options.inputFiles)
0017 )
0018
0019 process.TFileService = cms.Service(
0020 "TFileService",
0021 fileName = cms.string(options.outputFile),
0022 closeFileFast = cms.untracked.bool(True)
0023 )
0024
0025 process.load("Alignment.MillePedeAlignmentAlgorithm.zMuMuMassConstraintParameterFinder_cfi")
0026
0027 process.p = cms.Path(process.zMuMuMassConstraintParameterFinder)