Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:44:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CalibTracker.SiStripLorentzAngle.MeasureLA_cff import *
0004 
0005 SiStripLorentzAngleRcdSource = cms.ESSource( "EmptyESSource",
0006                                              recordName = cms.string( "SiStripLorentzAngleRcd" ),
0007                                              iovIsRunNotTime = cms.bool( True ),
0008                                              firstValid = cms.vuint32( 1 )
0009                                              )
0010 
0011 MeasureLA = cms.ESProducer(
0012     "sistrip::MeasureLA",
0013     InputFiles = cms.vstring([]),
0014     InFileLocation = cms.string('/calibrationTree/tree'),
0015     SiStripDetInfo = cms.FileInPath('CalibTracker/SiStripCommon/data/SiStripDetInfo.dat'),
0016     #MaxEvents = cms.untracked.uint32(100000),
0017     Reports = cms.VPSet( LA_Report( METHOD_WIDTH,   byLayer, "width_ByLayer"),
0018                          LA_Report( METHOD_PROB1,   byLayer, "prob1_ByLayer"),
0019                          LA_Report( METHOD_AVGV2,   byLayer, "avgv2_ByLayer"),
0020                          LA_Report( METHOD_AVGV3,   byLayer, "avgv3_ByLayer"),
0021                          LA_Report( METHOD_RMSV2,   byLayer, "rmsv2_ByLayer"),
0022                          LA_Report( METHOD_RMSV3,   byLayer, "rmsv3_ByLayer")
0023                          ),
0024     MeasurementPreferences = cms.VPSet( #LA_Measurement( METHOD_PROB1, byModule, 1000, 3.0),
0025                                         #LA_Measurement( METHOD_WIDTH, byModule, 1000, 3.0),
0026                                         #LA_Measurement( METHOD_AVGV2, byLayer,  1000, 3.5)
0027                                         ),
0028     Calibrations = LorentzAngleCalibrations_DeconvolutionModeBEAM
0029     )