Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import FWCore.ParameterSet.Config as cms

SiStripLorentzAngleCalibration_peak = cms.PSet(
    # Name that is bound to the SiStripLorentzAngleCalibration, defined by 
    # the DEFINE_EDM_PLUGIN macro in SiStripLorentzAngleCalibration.cc:
    calibrationName = cms.string('SiStripLorentzAngleCalibration'),

    # Configuration parameters of LorentzAngleCalibration
    readoutMode = cms.string('peak'), # peak or deconvolution
    treeFile = cms.string('treeFile.root'), # to store Lorentz angle values (in-&output)
    mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
    saveToDB = cms.bool(False), # save result in poolDBOutputService
    # If we save to DB, the recordNameDBwrite must match what is specified
    # as 'record' in the PoolDBOutputService:
    recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_peak'),

    # Configuration of the granularity for the Lorentz angle calibration
    LorentzAngleModuleGroups = cms.PSet(),
    )

SiStripLorentzAngleCalibration_deco = SiStripLorentzAngleCalibration_peak.clone(
    readoutMode    = 'deconvolution',
    recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),
    )