Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQM.TrackingMonitor.TrackingMonitor_cfi import *
0004 TrackerCosmicTrackMon = TrackMon.clone(
0005     # Update specific parameters
0006     SeedProducer = "combinedP5SeedsForCTF",
0007     TCProducer = "ckfTrackCandidatesP5",
0008     beamSpot = "offlineBeamSpot",     
0009 
0010     MeasurementState = 'default',
0011 
0012     doAllPlots = False,
0013     doHitPropertiesPlots = True,
0014     doGeneralPropertiesPlots = True,
0015     doBeamSpotPlots = False,
0016     doSeedParameterHistos = False,
0017 
0018     Chi2Max = 500.0,
0019 
0020     TkSizeBin = 25,
0021     TkSizeMax = 24.5,
0022 
0023     TkSeedSizeBin = 20,
0024     TkSeedSizeMax = 19.5,
0025 
0026     RecLayBin = 35,
0027     RecLayMax = 34.5,
0028 
0029     TrackPtMax = 30.0,
0030     TrackPtMin = -0.5,
0031 
0032     TrackPxMax = 50.0,
0033     TrackPxMin = -50.0,
0034 
0035     TrackPyMax = 50.0,
0036     TrackPyMin = -50.0,
0037 
0038     TrackPzMax = 50.0,
0039     TrackPzMin = -50.0,
0040 
0041     doLumiAnalysis = False
0042 )