CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripLorentzAngleCalibration_cff.py
Go to the documentation of this file.
2 
3 SiStripLorentzAngleCalibration_peak = cms.PSet(
4  # Name that is bound to the SiStripLorentzAngleCalibration, defined by
5  # the DEFINE_EDM_PLUGIN macro in SiStripLorentzAngleCalibration.cc:
6  calibrationName = cms.string('SiStripLorentzAngleCalibration'),
7 
8  # Configuration parameters of LorentzAngleCalibration
9  readoutMode = cms.string('peak'), # peak or deconvolution
10  treeFile = cms.string('treeFile.root'), # to store Lorentz angle values (in-&output)
11  mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
12  saveToDB = cms.bool(False), # save result in poolDBOutputService
13  # If we save to DB, the recordNameDBwrite must match what is specified
14  # as 'record' in the PoolDBOutputService:
15  recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_peak'),
16 
17  # Configuration of the granularity for the Lorentz angle calibration
18  LorentzAngleModuleGroups = cms.PSet(),
19  )
20 
21 SiStripLorentzAngleCalibration_deco = SiStripLorentzAngleCalibration_peak.clone(
22  readoutMode = 'deconvolution',
23  recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),
24  )