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
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(
00025
00026
00027 ),
00028 Calibrations = LorentzAngleCalibrations_DeconvolutionModeBEAM
00029 )