CMS 3D CMS Logo

EventContentCosmics_cff.py

Go to the documentation of this file.
00001 
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 #
00005 #
00006 # Event Content definition
00007 #
00008 # Data Tiers defined:
00009 #
00010 #  FEVT, RECO, AOD: 
00011 #    include reconstruction content
00012 #
00013 #  FEVTSIM, RECOSIM, AODSIM: 
00014 #    include reconstruction and simulation
00015 #
00016 #  FEVTSIMANA, RECOSIMANA, AODSIMANA: 
00017 #    include reconstruction, simulation and analysis
00018 #  FEVTSIMDIGIHLTDEBUG FEVTSIMHLTDEBUG
00019 #
00020 #  $Id: EventContentCosmics_cff.py,v 1.8 2008/11/03 13:53:43 arizzi Exp $
00021 #
00022 #
00023 #
00024 #
00025 # Recontruction Systems
00026 #
00027 #
00028 from RecoTracker.Configuration.RecoTrackerP5_EventContent_cff import *
00029 from RecoMuon.Configuration.RecoMuonCosmics_EventContent_cff import *
00030 from RecoLocalMuon.Configuration.RecoLocalMuonCosmics_EventContent_cff import *
00031 from RecoEcal.Configuration.RecoEcal_EventContentCosmics_cff import *
00032 from RecoLocalCalo.Configuration.RecoLocalCalo_EventContentCosmics_cff import *
00033 from RecoLocalTracker.Configuration.RecoLocalTracker_Cosmics_EventContent_cff import *
00034 from RecoJets.Configuration.RecoJets_EventContent_cff import *
00035 from RecoMET.Configuration.RecoMET_EventContent_cff import *
00036 from L1Trigger.Configuration.L1Trigger_EventContent_Cosmics_cff import *
00037 from RecoVertex.BeamSpotProducer.BeamSpot_EventContent_cff import *
00038 from DQMOffline.Configuration.DQMOffline_EventContent_cff import *
00039 from HLTrigger.Configuration.HLTrigger_EventContent_cff import *
00040 from GeneratorInterface.Configuration.GeneratorInterface_EventContent_cff import *
00041 from SimG4Core.Configuration.SimG4Core_EventContent_cff import *
00042 from SimTracker.Configuration.SimTracker_EventContent_cff import *
00043 from SimMuon.Configuration.SimMuon_EventContent_cff import *
00044 from SimCalorimetry.Configuration.SimCalorimetry_EventContent_cff import *
00045 from SimGeneral.Configuration.SimGeneral_EventContent_cff import *
00046 from IOMC.RandomEngine.IOMC_EventContent_cff import *
00047 from EventFilter.Configuration.DigiToRaw_EventContent_cff import *
00048 from RecoEgamma.Configuration.RecoEgamma_EventContent_cff import *
00049 from RecoVertex.Configuration.RecoVertex_EventContent_cff import *
00050 
00051 #not in Cosmics 
00052 #include "TrackingTools/Configuration/data/TrackingTools_EventContent.cff"
00053 #include "RecoBTau/Configuration/data/RecoBTau_EventContent.cff"
00054 #include "RecoBTag/Configuration/data/RecoBTag_EventContent.cff"
00055 #include "RecoTauTag/Configuration/data/RecoTauTag_EventContent.cff"
00056 #include "RecoVertex/Configuration/data/recoVertex_EventContent.cff"
00057 #include "RecoPixelVertexing/Configuration/data/RecoPixelVertexing_EventContent.cff"
00058 #include "RecoEgamma/Configuration/data/recoEgamma_EventContent.cff"
00059 #include "RecoParticleFlow/Configuration/data/RecoParticleFlow_EventContent.cff"
00060 #
00061 # FEVT Data Tier definition
00062 #
00063 #
00064 FEVTEventContent = cms.PSet(
00065     outputCommands = cms.untracked.vstring('drop *')
00066 )
00067 #replace FEVTEventContent.outputCommands += HLTriggerFEVT.outputCommands 
00068 #
00069 #
00070 # RECO Data Tier definition
00071 #
00072 #
00073 RECOEventContent = cms.PSet(
00074     outputCommands = cms.untracked.vstring('drop *')
00075 )
00076 #
00077 #
00078 # AOD Data Tier definition
00079 #
00080 #
00081 AODEventContent = cms.PSet(
00082     outputCommands = cms.untracked.vstring('drop *')
00083 )
00084 # RAW only data tier
00085 RAWEventContent = cms.PSet(
00086     outputCommands = cms.untracked.vstring('drop *', 
00087         'keep  FEDRawDataCollection_rawDataCollector_*_*', 
00088         'keep  FEDRawDataCollection_source_*_*')
00089 )
00090 #
00091 #
00092 # RAWSIM Data Tier definition
00093 #
00094 #
00095 RAWSIMEventContent = cms.PSet(
00096     outputCommands = cms.untracked.vstring('drop *')
00097 )
00098 #
00099 #
00100 # RECOSIM Data Tier definition
00101 #
00102 #
00103 RECOSIMEventContent = cms.PSet(
00104     outputCommands = cms.untracked.vstring('drop *')
00105 )
00106 #
00107 #
00108 # AODSIM Data Tier definition
00109 #
00110 #
00111 AODSIMEventContent = cms.PSet(
00112     outputCommands = cms.untracked.vstring('drop *')
00113 )
00114 
00115 #
00116 # FEVTSIM Data Tier definition
00117 #
00118 #
00119 FEVTSIMEventContent = cms.PSet(
00120     outputCommands = cms.untracked.vstring('drop *')
00121 )
00122 
00123 
00124 RAWEventContent.outputCommands.extend(L1TriggerRAW.outputCommands)
00125 RAWEventContent.outputCommands.extend(HLTriggerRAW.outputCommands)
00126 
00127 #FEVT is by definition RECO + RAW
00128 FEVTEventContent.outputCommands.extend(RAWEventContent.outputCommands)
00129 FEVTEventContent.outputCommands.extend(RecoLocalTrackerRECO.outputCommands)
00130 FEVTEventContent.outputCommands.extend(RecoLocalMuonRECO.outputCommands)
00131 FEVTEventContent.outputCommands.extend(RecoLocalCaloRECO.outputCommands)
00132 FEVTEventContent.outputCommands.extend(RecoEcalRECO.outputCommands)
00133 FEVTEventContent.outputCommands.extend(RecoEgammaRECO.outputCommands)
00134 FEVTEventContent.outputCommands.extend(RecoTrackerRECO.outputCommands)
00135 FEVTEventContent.outputCommands.extend(RecoJetsRECO.outputCommands)
00136 FEVTEventContent.outputCommands.extend(RecoMETRECO.outputCommands)
00137 FEVTEventContent.outputCommands.extend(RecoMuonRECO.outputCommands)
00138 FEVTEventContent.outputCommands.extend(BeamSpotRECO.outputCommands)
00139 FEVTEventContent.outputCommands.extend(RecoVertexRECO.outputCommands)
00140 FEVTEventContent.outputCommands.extend(L1TriggerRECO.outputCommands)
00141 FEVTEventContent.outputCommands.extend(HLTriggerRECO.outputCommands)
00142 FEVTEventContent.outputCommands.extend(MEtoEDMConverterRECO.outputCommands)
00143 
00144 RECOEventContent.outputCommands.extend(RecoLocalTrackerRECO.outputCommands)
00145 RECOEventContent.outputCommands.extend(RecoLocalMuonRECO.outputCommands)
00146 RECOEventContent.outputCommands.extend(RecoLocalCaloRECO.outputCommands)
00147 RECOEventContent.outputCommands.extend(RecoEcalRECO.outputCommands)
00148 RECOEventContent.outputCommands.extend(RecoEgammaRECO.outputCommands)
00149 RECOEventContent.outputCommands.extend(RecoTrackerRECO.outputCommands)
00150 RECOEventContent.outputCommands.extend(RecoJetsRECO.outputCommands)
00151 RECOEventContent.outputCommands.extend(RecoMETRECO.outputCommands)
00152 RECOEventContent.outputCommands.extend(RecoMuonRECO.outputCommands)
00153 RECOEventContent.outputCommands.extend(BeamSpotRECO.outputCommands)
00154 RECOEventContent.outputCommands.extend(RecoVertexRECO.outputCommands)
00155 RECOEventContent.outputCommands.extend(L1TriggerRECO.outputCommands)
00156 RECOEventContent.outputCommands.extend(HLTriggerRECO.outputCommands)
00157 RECOEventContent.outputCommands.extend(MEtoEDMConverterRECO.outputCommands)
00158 
00159 AODEventContent.outputCommands.extend(RecoLocalTrackerAOD.outputCommands)
00160 AODEventContent.outputCommands.extend(RecoLocalMuonAOD.outputCommands)
00161 AODEventContent.outputCommands.extend(RecoLocalCaloAOD.outputCommands)
00162 AODEventContent.outputCommands.extend(RecoEcalAOD.outputCommands)
00163 AODEventContent.outputCommands.extend(RecoEgammaAOD.outputCommands)
00164 AODEventContent.outputCommands.extend(RecoTrackerAOD.outputCommands)
00165 AODEventContent.outputCommands.extend(RecoJetsAOD.outputCommands)
00166 AODEventContent.outputCommands.extend(RecoMETAOD.outputCommands)
00167 AODEventContent.outputCommands.extend(RecoMuonAOD.outputCommands)
00168 AODEventContent.outputCommands.extend(BeamSpotAOD.outputCommands)
00169 AODEventContent.outputCommands.extend(RecoVertexAOD.outputCommands)
00170 AODEventContent.outputCommands.extend(MEtoEDMConverterAOD.outputCommands)
00171 
00172 RAWSIMEventContent.outputCommands.extend(RAWEventContent.outputCommands)
00173 RAWSIMEventContent.outputCommands.extend(SimG4CoreRAW.outputCommands)
00174 RAWSIMEventContent.outputCommands.extend(SimTrackerRAW.outputCommands)
00175 RAWSIMEventContent.outputCommands.extend(SimMuonRAW.outputCommands)
00176 RAWSIMEventContent.outputCommands.extend(SimCalorimetryRAW.outputCommands)
00177 RAWSIMEventContent.outputCommands.extend(SimGeneralRAW.outputCommands)
00178 RAWSIMEventContent.outputCommands.extend(GeneratorInterfaceRAW.outputCommands)
00179 RAWSIMEventContent.outputCommands.extend(RecoGenJetsFEVT.outputCommands)
00180 RAWSIMEventContent.outputCommands.extend(RecoGenMETFEVT.outputCommands)
00181 RAWSIMEventContent.outputCommands.extend(DigiToRawFEVT.outputCommands)
00182 RAWSIMEventContent.outputCommands.extend(MEtoEDMConverterFEVT.outputCommands)
00183 RAWSIMEventContent.outputCommands.extend(IOMCRAW.outputCommands)
00184 
00185 RECOSIMEventContent.outputCommands.extend(RECOEventContent.outputCommands)
00186 RECOSIMEventContent.outputCommands.extend(GeneratorInterfaceRECO.outputCommands)
00187 RECOSIMEventContent.outputCommands.extend(SimG4CoreRECO.outputCommands)
00188 RECOSIMEventContent.outputCommands.extend(SimTrackerRECO.outputCommands)
00189 RECOSIMEventContent.outputCommands.extend(SimMuonRECO.outputCommands)
00190 RECOSIMEventContent.outputCommands.extend(SimCalorimetryRECO.outputCommands)
00191 RECOSIMEventContent.outputCommands.extend(RecoGenMETRECO.outputCommands)
00192 RECOSIMEventContent.outputCommands.extend(RecoGenJetsRECO.outputCommands)
00193 RECOSIMEventContent.outputCommands.extend(SimGeneralRECO.outputCommands)
00194 RECOSIMEventContent.outputCommands.extend(MEtoEDMConverterRECO.outputCommands)
00195 
00196 AODSIMEventContent.outputCommands.extend(AODEventContent.outputCommands)
00197 AODSIMEventContent.outputCommands.extend(GeneratorInterfaceAOD.outputCommands)
00198 AODSIMEventContent.outputCommands.extend(SimG4CoreAOD.outputCommands)
00199 AODSIMEventContent.outputCommands.extend(SimTrackerAOD.outputCommands)
00200 AODSIMEventContent.outputCommands.extend(SimMuonAOD.outputCommands)
00201 AODSIMEventContent.outputCommands.extend(SimCalorimetryAOD.outputCommands)
00202 AODSIMEventContent.outputCommands.extend(RecoGenJetsAOD.outputCommands)
00203 AODSIMEventContent.outputCommands.extend(RecoGenMETAOD.outputCommands)
00204 AODSIMEventContent.outputCommands.extend(SimGeneralAOD.outputCommands)
00205 AODSIMEventContent.outputCommands.extend(MEtoEDMConverterAOD.outputCommands)
00206 
00207 FEVTSIMEventContent.outputCommands.extend(RAWEventContent.outputCommands)
00208 FEVTSIMEventContent.outputCommands.extend(SimG4CoreRAW.outputCommands)
00209 FEVTSIMEventContent.outputCommands.extend(SimTrackerRAW.outputCommands)
00210 FEVTSIMEventContent.outputCommands.extend(SimMuonRAW.outputCommands)
00211 FEVTSIMEventContent.outputCommands.extend(SimCalorimetryRAW.outputCommands)
00212 FEVTSIMEventContent.outputCommands.extend(SimGeneralRAW.outputCommands)
00213 FEVTSIMEventContent.outputCommands.extend(GeneratorInterfaceRAW.outputCommands)
00214 FEVTSIMEventContent.outputCommands.extend(RecoGenJetsFEVT.outputCommands)
00215 FEVTSIMEventContent.outputCommands.extend(RecoGenMETFEVT.outputCommands)
00216 FEVTSIMEventContent.outputCommands.extend(DigiToRawFEVT.outputCommands)
00217 FEVTSIMEventContent.outputCommands.extend(MEtoEDMConverterFEVT.outputCommands)
00218 FEVTSIMEventContent.outputCommands.extend(IOMCRAW.outputCommands)
00219 FEVTSIMEventContent.outputCommands.extend(RecoLocalTrackerRECO.outputCommands)
00220 FEVTSIMEventContent.outputCommands.extend(RecoLocalMuonRECO.outputCommands)
00221 FEVTSIMEventContent.outputCommands.extend(RecoLocalCaloRECO.outputCommands)
00222 FEVTSIMEventContent.outputCommands.extend(RecoEcalRECO.outputCommands)
00223 FEVTSIMEventContent.outputCommands.extend(RecoTrackerRECO.outputCommands)
00224 FEVTSIMEventContent.outputCommands.extend(RecoJetsRECO.outputCommands)
00225 FEVTSIMEventContent.outputCommands.extend(RecoMETRECO.outputCommands)
00226 FEVTSIMEventContent.outputCommands.extend(RecoMuonRECO.outputCommands)
00227 FEVTSIMEventContent.outputCommands.extend(RecoEgammaRECO.outputCommands)
00228 FEVTSIMEventContent.outputCommands.extend(BeamSpotRECO.outputCommands)
00229 FEVTSIMEventContent.outputCommands.extend(RecoVertexRECO.outputCommands)
00230 FEVTSIMEventContent.outputCommands.extend(L1TriggerRECO.outputCommands)
00231 FEVTSIMEventContent.outputCommands.extend(HLTriggerRECO.outputCommands)
00232 FEVTSIMEventContent.outputCommands.extend(MEtoEDMConverterRECO.outputCommands)
00233 FEVTSIMEventContent.outputCommands.extend(GeneratorInterfaceRECO.outputCommands)
00234 FEVTSIMEventContent.outputCommands.extend(RecoGenMETRECO.outputCommands)
00235 FEVTSIMEventContent.outputCommands.extend(RecoGenJetsRECO.outputCommands)
00236 FEVTSIMEventContent.outputCommands.extend(SimG4CoreRECO.outputCommands)
00237 FEVTSIMEventContent.outputCommands.extend(SimTrackerRECO.outputCommands)
00238 FEVTSIMEventContent.outputCommands.extend(SimMuonRECO.outputCommands)
00239 FEVTSIMEventContent.outputCommands.extend(SimCalorimetryRECO.outputCommands)
00240 FEVTSIMEventContent.outputCommands.extend(SimGeneralRECO.outputCommands)
00241 FEVTSIMEventContent.outputCommands.extend(MEtoEDMConverterRECO.outputCommands)

Generated on Tue Jun 9 17:26:58 2009 for CMSSW by  doxygen 1.5.4