test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 minBiasSkimPath = cms.Path( minBiasSkimSequence )
15 SKIMStreamPAMinBias = cms.FilteredStream(
16  responsible = 'HI PAG',
17  name = 'PAMinBias',
18  paths = (minBiasSkimPath),
19  content = skimFEVTContent.outputCommands,
20  selectEvents = cms.untracked.PSet(),
21  dataTier = cms.untracked.string('RAW-RECO')
22  )
23 
24 #####################
25 
26 
28 zEESkimPath = cms.Path( zEESkimSequence )
29 SKIMStreamPAZEE = cms.FilteredStream(
30  responsible = 'HI PAG',
31  name = 'PAZEE',
32  paths = (zEESkimPath),
33  content = skimFEVTContent.outputCommands,
34  selectEvents = cms.untracked.PSet(),
35  dataTier = cms.untracked.string('RAW-RECO')
36  )
37 
38 #####################
39 
40 
42 zMMSkimPath = cms.Path( zMMSkimSequence )
43 SKIMStreamPAZMM = cms.FilteredStream(
44  responsible = 'HI PAG',
45  name = 'PAZMM',
46  paths = (zMMSkimPath),
47  content = skimFEVTContent.outputCommands,
48  selectEvents = cms.untracked.PSet(),
49  dataTier = cms.untracked.string('RAW-RECO')
50  )
51 
52 #####################