CMS 3D CMS Logo

profile_base_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 profile_base = cms.PSet(
4  L_int = cms.double(1.),
5  # LHCInfo (default Run 3 values)
6  ctppsLHCInfo = cms.PSet(
7  xangle = cms.double(-1.),
8  betaStar = cms.double(-1.),
9  beamEnergy = cms.double(6.8e3),
10  xangleBetaStarHistogramFile = cms.string("CalibPPS/ESProducers/data/xangle_beta_distributions/version1.root"),
11  xangleBetaStarHistogramObject = cms.string("")
12  ),
13  # optics
14  ctppsOpticalFunctions = cms.PSet(
15  opticalFunctions = cms.VPSet(),
16  scoringPlanes = cms.VPSet()
17  ),
18  # alignment
19  ctppsRPAlignmentCorrectionsDataXML = cms.PSet(
20  MeasuredFiles = cms.vstring(),
21  RealFiles = cms.vstring(),
22  MisalignedFiles = cms.vstring()
23  ),
24  # direct simu data
25  ctppsDirectSimuData = cms.PSet(
26  empiricalAperture45 = cms.string(""),
27  empiricalAperture56 = cms.string(""),
28  timeResolutionDiamonds45 = cms.string("999"),
29  timeResolutionDiamonds56 = cms.string("999"),
30  efficienciesPerRP = cms.VPSet(),
31  efficienciesPerPlane = cms.VPSet()
32  )
33 )