CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/CalibTracker/SiStripLorentzAngle/python/SiStripLAProfileBooker_cfi.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 # calibration
00004 
00005 import FWCore.ParameterSet.Config as cms
00006 
00007 sistripLAProfile = cms.EDAnalyzer("SiStripLAProfileBooker",
00008 
00009     # input from trajectories
00010     Tracks = cms.InputTag("generalTracks"),
00011     UseStripCablingDB = cms.bool(False),
00012     
00013     # calibration
00014     DoCalibration = cms.bool(False),
00015     TIB_bin = cms.int32(30),
00016     TOB_bin = cms.int32(30),
00017     SUM_bin = cms.int32(30),
00018     ModuleXMin = cms.double(-0.6),
00019     ModuleXMax = cms.double(0.6),
00020     TIBXMin = cms.double(-0.6),
00021     TIBXMax = cms.double(0.6),
00022     TOBXMin = cms.double(-0.6),
00023     TOBXMax = cms.double(0.6),
00024     ModuleFitXMin = cms.double(-0.3),
00025     ModuleFitXMax = cms.double(0.3),
00026     TIBFitXMin = cms.double(-0.3),
00027     TIBFitXMax = cms.double(0.3),
00028     TOBFitXMin = cms.double(-0.3),
00029     TOBFitXMax = cms.double(0.3),
00030     #NHitMin = cms.int32(8),
00031      
00032     #output files
00033     treeName = cms.untracked.string('SiStripLATrees.root'),
00034     fileName = cms.untracked.string('trackhisto.root')
00035 )
00036 
00037