Skip to content

Commit

Permalink
first version of the pruned AOD.
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Bernet committed Oct 2, 2009
1 parent d016e57 commit f9e426a
Showing 1 changed file with 43 additions and 2 deletions.
45 changes: 43 additions & 2 deletions PhysicsTools/PFCandProducer/python/PF2PAT_EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
'keep *_genParticles_*_*',
'keep *_genMetTrue_*_*',
'keep recoGenJets_*_*_*',
# 'keep *_pfCandToVertexAssociator_*_*',
# isolated electrons and muons
'keep *_pfIsolatedElectrons_*_*',
'keep *_pfIsolatedMuons_*_*',
'keep *_pfNoJet_*_*',
'keep recoIsoDepositedmValueMap_*_*_*',
# jets
'keep pfRecoPFJets_pfNoTau_*_*',
'keep recoPFJets_pfNoTau_*_*',
# taus
'keep *_allLayer0Taus_*_*',
'keep recoPFTauDiscriminator_*_*_*',
Expand Down Expand Up @@ -52,3 +51,45 @@
)
)

prunedAODForPF2PATEventContent = cms.PSet(
outputCommands = cms.untracked.vstring(
# 'drop *',
# the following is not necessary in real data, but is necessary now for PF2PAT, to get the true MET. this step has to be made optional
# 'keep *_genParticles_*_*',
# 'keep *_particleFlow_*_*',
# 'keep *_gsfElectrons_*_*',
# 'keep *_gsfElectronCores_*_*',
# why do we need both collections of prim vertices?
# 'keep *_offlinePrimaryVertices_*_*',
# 'keep *_offlinePrimaryVerticesWithBS_*_*',
# 'keep *_generalTracks_*_*',
# 'keep *_eid*_*_*',
# 'keep *_electronGsfTracks_*_*',
'drop recoCaloTau*_*_*_*',
'drop recoPFTau*_*_*_*',
'drop recoCaloJet*_*_*_*',
'drop recoPFJet*_*_*_*',
'drop recoConversions_*_*_*',
'drop recoJetedmRefToBaseProdTofloatsAssociationVector_*_*_*',
'drop recoPreshowerClusters_*_*_*',
'drop recoMETs_*_*_*',
'drop recoPFMETs_*_*_*',
'drop recoCaloMETs_*_*_*',
'drop *_genMetCalo_*_*',
'drop *_genMetCaloAndNonPrompt_*_*',
'drop *_tevMuons_*_*',
'drop *_generalV0Candidates_*_*',
'drop *_*TracksFromConversions_*_*',
'drop recoPhoton*_*_*_*',
'drop *_muIsoDeposit*_*_*',
'drop recoMuonMETCorrectionDataedmValueMap_*_*_*',
'drop *_*JetTracksAssociator*_*_*',
'drop *_*JetExtender_*_*',
'drop recoSoftLeptonTagInfos_*_*_*',
'drop *_impactParameterTagInfos_*_*',
'drop *_towerMaker_*_*',
'drop *_sisCone*_*_*',
'drop *_PhotonIDProd_*_*',
'drop recoHFEMClusterShapes_*_*_*'
)
)

0 comments on commit f9e426a

Please sign in to comment.