CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CalibTracker/SiStripLorentzAngle/python/MeasureLA_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from CalibTracker.SiStripLorentzAngle.MeasureLA_cff import *
00004 
00005 SiStripLorentzAngleRcdSource = cms.ESSource( "EmptyESSource",
00006                                              recordName = cms.string( "SiStripLorentzAngleRcd" ),
00007                                              iovIsRunNotTime = cms.bool( True ),
00008                                              firstValid = cms.vuint32( 1 )
00009                                              )
00010 
00011 MeasureLA = cms.ESProducer(
00012     "sistrip::MeasureLA",
00013     InputFiles = cms.vstring([]),
00014     InFileLocation = cms.string('/calibrationTree/tree'),
00015     SiStripDetInfo = cms.FileInPath('CalibTracker/SiStripCommon/data/SiStripDetInfo.dat'),
00016     #MaxEvents = cms.untracked.uint32(100000),
00017     Reports = cms.VPSet( LA_Report( METHOD_WIDTH,   byLayer, "width_ByLayer"),
00018                          LA_Report( METHOD_PROB1,   byLayer, "prob1_ByLayer"),
00019                          LA_Report( METHOD_AVGV2,   byLayer, "avgv2_ByLayer"),
00020                          LA_Report( METHOD_AVGV3,   byLayer, "avgv3_ByLayer"),
00021                          LA_Report( METHOD_RMSV2,   byLayer, "rmsv2_ByLayer"),
00022                          LA_Report( METHOD_RMSV3,   byLayer, "rmsv3_ByLayer")
00023                          ),
00024     MeasurementPreferences = cms.VPSet( #LA_Measurement( METHOD_PROB1, byModule, 1000, 3.0),
00025                                         #LA_Measurement( METHOD_WIDTH, byModule, 1000, 3.0),
00026                                         #LA_Measurement( METHOD_AVGV2, byLayer,  1000, 3.5)
00027                                         ),
00028     Calibrations = LorentzAngleCalibrations_DeconvolutionModeBEAM
00029     )