Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:59

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CalibTracker.SiStripCommon.ShallowClustersProducer_cfi import *
0004 from CalibTracker.SiStripCommon.ShallowTrackClustersProducer_cfi import *
0005 
0006 LorentzAngleOutputCommands =  [ 'keep *_shallowClusters_clusterdetid_*',
0007                                 'keep *_shallowClusters_clusterwidth_*',
0008                                 'keep *_shallowClusters_clustervariance_*',
0009                                 'keep *_shallowTrackClusters_tsostrackmulti_*',
0010                                 'keep *_shallowTrackClusters_tsosdriftx_*',
0011                                 'keep *_shallowTrackClusters_tsosdriftz_*',
0012                                 'keep *_shallowTrackClusters_tsoslocaltheta_*',
0013                                 'keep *_shallowTrackClusters_tsoslocalphi_*',
0014                                 'keep *_shallowTrackClusters_tsosBdotY_*',
0015                                 #'keep *_shallowTrackClusters_tsoslocaly_*',
0016                                 'keep *_shallowTrackClusters_tsosglobalZofunitlocalY_*']
0017 
0018 laCalibrationTree = cms.EDAnalyzer("ShallowTree", outputCommands = cms.untracked.vstring('drop *'))
0019 laCalibrationTree.outputCommands += LorentzAngleOutputCommands
0020 
0021 LorentzAngleNtuple = cms.Sequence( (shallowClusters +
0022                                     shallowTrackClusters) *
0023                                    laCalibrationTree
0024                                    )