CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCSkim_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #------------------------------------------
4 # parameters for the CSCSkim module
5 #------------------------------------------
6 cscSkim = cms.EDFilter(
7  "CSCSkim",
8  typeOfSkim = cms.untracked.int32(1),
9  rootFileName = cms.untracked.string('outputDummy.root'),
10  histogramFileName = cms.untracked.string('CSCSkim_histos.root'),
11  nLayersWithHitsMinimum = cms.untracked.int32(3),
12  minimumHitChambers = cms.untracked.int32(3),
13  minimumSegments = cms.untracked.int32(2),
14  demandChambersBothSides = cms.untracked.bool(False),
15  makeHistograms = cms.untracked.bool(False),
16  whichEndcap = cms.untracked.int32(2),
17  whichStation = cms.untracked.int32(3),
18  whichRing = cms.untracked.int32(2),
19  whichChamber = cms.untracked.int32(24),
20 #
21  cscRecHitTag = cms.InputTag("csc2DRecHits"),
22  cscSegmentTag = cms.InputTag("cscSegments"),
23  SAMuonTag = cms.InputTag("cosmicMuonsEndCapsOnly"),
24  GLBMuonTag = cms.InputTag("muonsEndCapsOnly"),
25  trackTag = cms.InputTag("ctfWithMaterialTracksP5")
26 )
27 
28 #