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 SiPixelLorentzAngleCalibration = cms.PSet(
0004     # Name that is bound to the SiPixelLorentzAngleCalibration, defined by 
0005     # the DEFINE_EDM_PLUGIN macro in SiPixelLorentzAngleCalibration.cc:
0006     calibrationName = cms.string('SiPixelLorentzAngleCalibration'),
0007 
0008     # Configuration parameters of SiPixelLorentzAngleCalibration
0009     treeFile = cms.string('treeFile.root'), # to store Lorentz angle values (in-&output)
0010     mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
0011     saveToDB = cms.bool(False), # save result in poolDBOutputService
0012     # If we save to DB, the recordNameDBwrite must match what is specified
0013     # as 'record' in the PoolDBOutputService:
0014     recordNameDBwrite = cms.string('SiPixelLorentzAngleRcd'),
0015     
0016     # Configuration of the granularity for the Lorentz angle calibration
0017     LorentzAngleModuleGroups = cms.PSet(),
0018 
0019     # depending on the TTRHBuilder one has to use different
0020     # 'SiPixelLorentzAngleRcd' flavors, e.g. when using template hit
0021     # reconstruction one has to use "fromAlignment" and for the generic version
0022     # one directly uses the unlabelled version, i.e. ""
0023     lorentzAngleLabel = cms.string("fromAlignment"),
0024     )