CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MeasureLA_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 SiStripLorentzAngleRcdSource = cms.ESSource( "EmptyESSource",
6  recordName = cms.string( "SiStripLorentzAngleRcd" ),
7  iovIsRunNotTime = cms.bool( True ),
8  firstValid = cms.vuint32( 1 )
9  )
10 
11 MeasureLA = cms.ESProducer(
12  "sistrip::MeasureLA",
13  InputFiles = cms.vstring([]),
14  InFileLocation = cms.string('/calibrationTree/tree'),
15  SiStripDetInfo = cms.FileInPath('CalibTracker/SiStripCommon/data/SiStripDetInfo.dat'),
16  #MaxEvents = cms.untracked.uint32(100000),
17  Reports = cms.VPSet( LA_Report( METHOD_WIDTH, byLayer, "width_ByLayer"),
18  LA_Report( METHOD_PROB1, byLayer, "prob1_ByLayer"),
19  LA_Report( METHOD_AVGV2, byLayer, "avgv2_ByLayer"),
20  LA_Report( METHOD_AVGV3, byLayer, "avgv3_ByLayer"),
21  LA_Report( METHOD_RMSV2, byLayer, "rmsv2_ByLayer"),
22  LA_Report( METHOD_RMSV3, byLayer, "rmsv3_ByLayer")
23  ),
24  MeasurementPreferences = cms.VPSet( #LA_Measurement( METHOD_PROB1, byModule, 1000, 3.0),
25  #LA_Measurement( METHOD_WIDTH, byModule, 1000, 3.0),
26  #LA_Measurement( METHOD_AVGV2, byLayer, 1000, 3.5)
27  ),
28  Calibrations = LorentzAngleCalibrations_DeconvolutionModeBEAM
29  )