CMS 3D CMS Logo

profiles_2022_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from SimPPS.DirectSimProducer.profile_base_cff import profile_base as _base
3 from CalibPPS.ESProducers.ctppsOpticalFunctions_non_DB_cff import optics_2021 as _optics
4 
5 # base profile settings for 2022
6 _base_2022 = _base.clone(
7  ctppsOpticalFunctions = _base.ctppsOpticalFunctions.clone(
8  opticalFunctions = _optics.opticalFunctions,
9  scoringPlanes = _optics.scoringPlanes,
10  ),
11  ctppsDirectSimuData = _base.ctppsDirectSimuData.clone(
12  empiricalAperture45 = "1.e3*([xi] - 0.20)",
13  empiricalAperture56 = "1.e3*([xi] - 0.20)"
14  )
15 )
16 
17 profile_2022_default = _base_2022.clone(
18  L_int = 1.,
19  ctppsLHCInfo = _base_2022.ctppsLHCInfo.clone(
20  # NB: until a dedicated 2022 distributions are issued, it is OK to use 2021 ones here
21  xangleBetaStarHistogramObject = "2021/h2_betaStar_vs_xangle"
22  ),
23  ctppsRPAlignmentCorrectionsDataXML = _base_2022.ctppsRPAlignmentCorrectionsDataXML.clone(
24  MisalignedFiles = ["Validation/CTPPS/alignment/alignment_2022.xml"],
25  RealFiles = ["Validation/CTPPS/alignment/alignment_2022.xml"]
26  ),
27  ctppsDirectSimuData = _base_2022.ctppsDirectSimuData.clone(
28  timeResolutionDiamonds45 = "0.200",
29  timeResolutionDiamonds56 = "0.200"
30  )
31 )