Skip to content

Commit

Permalink
first import
Browse files Browse the repository at this point in the history
  • Loading branch information
abenagli committed May 7, 2013
1 parent 411f530 commit 2f1a2a8
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import FWCore.ParameterSet.Config as cms



OutALCARECOEcalUncalElectron_specific = cms.untracked.vstring(
'drop *_TriggerResults_*_RECO',
#'keep *_TriggerResults_*_*',
#'keep recoGsfElectrons_gsfElectrons_*_RECO',
#'keep recoGsfElectronCores_gsfElectronCores_*_RECO',
'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*',
'keep *_ecalGlobalUncalibRecHit_*_*',
'keep *_ecalPreshowerDigis_*_*',
'keep *_ecalDetIdToBeRecovered_*_*',
#this are recreated, so they are not needed at this step
'drop recoCaloClusters_*_*_*',
'drop recoSuperClusters_*_*_*',
'drop recoPreshowerCluster*_*_*_*',
'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*',
# these are not recreated
'keep reco*Clusters_pfElectronTranslator_*_*'
)

from Calibration.EcalAlCaRecoProducers.ALCARECOEcalCalIsolElectron_Output_cff import *

import copy
OutALCARECOEcalUncalElectron=copy.deepcopy(OutALCARECOEcalCalElectron_noDrop)
OutALCARECOEcalUncalElectron.outputCommands.insert(0, "drop *")
OutALCARECOEcalUncalElectron.outputCommands += OutALCARECOEcalUncalElectron_specific

OutALCARECOEcalUncalElectron.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalUncalZElectron', 'pathALCARECOEcalUncalWElectron')
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import FWCore.ParameterSet.Config as cms



from Calibration.EcalAlCaRecoProducers.ALCARECOEcalCalIsolElectron_cff import *
from Configuration.StandardSequences.RawToDigi_Data_cff import *
from RecoLocalCalo.Configuration.RecoLocalCalo_cff import *

ecalUncalibRecHitSequence = cms.Sequence(ecalGlobalUncalibRecHit * ecalDetIdToBeRecovered)
uncalibRecHitSeq = cms.Sequence((ecalDigis+ecalPreshowerDigis) * ecalUncalibRecHitSequence)

seqALCARECOEcalUncalElectron = cms.Sequence( uncalibRecHitSeq )

seqALCARECOEcalUncalZElectron = cms.Sequence( tagGsfSeq * seqALCARECOEcalUncalElectron)
seqALCARECOEcalUncalWElectron = cms.Sequence( WSkimSeq * seqALCARECOEcalUncalElectron)

0 comments on commit 2f1a2a8

Please sign in to comment.