Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:17

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CTPPSProtonReconstructionEfficiencyEstimatorData(*args, **kwargs):
0004   mod = cms.EDAnalyzer('CTPPSProtonReconstructionEfficiencyEstimatorData',
0005     tagTracks = cms.InputTag(''),
0006     tagRecoProtonsMultiRP = cms.InputTag(''),
0007     lhcInfoLabel = cms.string(''),
0008     lhcInfoPerLSLabel = cms.string(''),
0009     lhcInfoPerFillLabel = cms.string(''),
0010     useNewLHCInfo = cms.bool(False),
0011     opticsLabel = cms.string(''),
0012     ppsAssociationCutsLabel = cms.string(''),
0013     pixelDiscardBXShiftedTracks = cms.bool(False),
0014     localAngleXMin = cms.double(-0.03),
0015     localAngleXMax = cms.double(0.03),
0016     localAngleYMin = cms.double(-0.04),
0017     localAngleYMax = cms.double(0.04),
0018     n_prep_events = cms.uint32(1000),
0019     n_exp_prot_max = cms.uint32(5),
0020     n_sigmas = cms.vdouble(
0021       3,
0022       5,
0023       7
0024     ),
0025     rpId_45_N = cms.uint32(0),
0026     rpId_45_F = cms.uint32(0),
0027     rpId_56_N = cms.uint32(0),
0028     rpId_56_F = cms.uint32(0),
0029     outputFile = cms.string('output.root'),
0030     verbosity = cms.untracked.uint32(0),
0031     mightGet = cms.optional.untracked.vstring
0032   )
0033   for a in args:
0034     mod.update_(a)
0035   mod.update_(kwargs)
0036   return mod