Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 SiStripLorentzAngleCalibration_peak = cms.PSet(
0004     # Name that is bound to the SiStripLorentzAngleCalibration, defined by 
0005     # the DEFINE_EDM_PLUGIN macro in SiStripLorentzAngleCalibration.cc:
0006     calibrationName = cms.string('SiStripLorentzAngleCalibration'),
0007 
0008     # Configuration parameters of LorentzAngleCalibration
0009     readoutMode = cms.string('peak'), # peak or deconvolution
0010     treeFile = cms.string('treeFile.root'), # to store Lorentz angle values (in-&output)
0011     mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
0012     saveToDB = cms.bool(False), # save result in poolDBOutputService
0013     # If we save to DB, the recordNameDBwrite must match what is specified
0014     # as 'record' in the PoolDBOutputService:
0015     recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_peak'),
0016 
0017     # Configuration of the granularity for the Lorentz angle calibration
0018     LorentzAngleModuleGroups = cms.PSet(),
0019     )
0020 
0021 SiStripLorentzAngleCalibration_deco = SiStripLorentzAngleCalibration_peak.clone(
0022     readoutMode    = 'deconvolution',
0023     recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),
0024     )