CMS 3D CMS Logo

Skims_PA_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from Configuration.EventContent.EventContent_cff import FEVTEventContent
4 
5 skimFEVTContent = FEVTEventContent.clone()
6 skimFEVTContent.outputCommands.append("drop *_MEtoEDMConverter_*_*")
7 skimFEVTContent.outputCommands.append("drop *_*_*_SKIM")
8 
9 
10 
11 
12 
14 minBiasPASkimPath = cms.Path( minBiasPASkimSequence )
15 SKIMStreamPAMinBias = cms.FilteredStream(
16  responsible = 'HI PAG',
17  name = 'PAMinBias',
18  paths = (minBiasPASkimPath),
19  content = skimFEVTContent.outputCommands,
20  selectEvents = cms.untracked.PSet(),
21  dataTier = cms.untracked.string('RAW-RECO')
22  )
23 
24 
25 
26 
28 zEEPASkimPath = cms.Path( zEEPASkimSequence )
29 SKIMStreamPAZEE = cms.FilteredStream(
30  responsible = 'HI PAG',
31  name = 'PAZEE',
32  paths = (zEEPASkimPath),
33  content = skimFEVTContent.outputCommands,
34  selectEvents = cms.untracked.PSet(),
35  dataTier = cms.untracked.string('RAW-RECO')
36  )
37 
38 
39 
40 
42 zMMPASkimPath = cms.Path( zMMPASkimSequence )
43 SKIMStreamPAZMM = cms.FilteredStream(
44  responsible = 'HI PAG',
45  name = 'PAZMM',
46  paths = (zMMPASkimPath),
47  content = skimFEVTContent.outputCommands,
48  selectEvents = cms.untracked.PSet(),
49  dataTier = cms.untracked.string('RAW-RECO')
50  )
51 
52