ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/CMSSW/Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py
Revision: 1.2
Committed: Fri May 31 12:13:40 2013 UTC (11 years, 11 months ago) by flucke
Content type: text/x-python
Branch: MAIN
CVS Tags: CMSSW_6_2_0, CMSSW_6_2_0_pre8, V04-00-14, V04-00-13, V04-00-09-53X-calib-V01, V04-00-12, HEAD
Changes since 1.1: +19 -0 lines
Log Message:
merging calibration development from branch 'branch53X_calibration' (tag
'br53-00-09') to HEAD:
- add backplane calibration
- configurable granularity in time (i.e. run) and space for lorentz angle
  calibrations
- more info in diagnostics tree

File Contents

# User Rev Content
1 flucke 1.2 import FWCore.ParameterSet.Config as cms
2    
3     SiStripBackplaneCalibration = cms.PSet(
4     # Name that is bound to the SiStripBackplaneCalibration, defined by
5     # the DEFINE_EDM_PLUGIN macro in SiStripBackplaneCalibration.cc:
6     calibrationName = cms.string('SiStripBackplaneCalibration'),
7    
8     # Configuration parameters of BackplaneCalibration
9     readoutMode = cms.string('deconvolution'), # 'peak' is reference, so do not change this
10     treeFile = cms.string('treeFile.root'), # to store backplane correction 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('SiStripBackPlaneCorrectionRcd'),
16    
17     # Configuration of the granularity for the backplane correction determination
18     BackplaneModuleGroups = cms.PSet(),
19     )