CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripLAProfileBooker_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # calibration
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 sistripLAProfile = cms.EDAnalyzer("SiStripLAProfileBooker",
8 
9  # input from trajectories
10  Tracks = cms.InputTag("generalTracks"),
11  UseStripCablingDB = cms.bool(False),
12 
13  # calibration
14  DoCalibration = cms.bool(False),
15  TIB_bin = cms.int32(30),
16  TOB_bin = cms.int32(30),
17  SUM_bin = cms.int32(30),
18  ModuleXMin = cms.double(-0.6),
19  ModuleXMax = cms.double(0.6),
20  TIBXMin = cms.double(-0.6),
21  TIBXMax = cms.double(0.6),
22  TOBXMin = cms.double(-0.6),
23  TOBXMax = cms.double(0.6),
24  ModuleFitXMin = cms.double(-0.3),
25  ModuleFitXMax = cms.double(0.3),
26  TIBFitXMin = cms.double(-0.3),
27  TIBFitXMax = cms.double(0.3),
28  TOBFitXMin = cms.double(-0.3),
29  TOBFitXMax = cms.double(0.3),
30  #NHitMin = cms.int32(8),
31 
32  #output files
33  treeName = cms.untracked.string('SiStripLATrees.root'),
34  fileName = cms.untracked.string('trackhisto.root')
35 )
36 
37