Skip to content

Commit

Permalink
Merge pull request #10208 from davidlange6/alcaOutputs_t4
Browse files Browse the repository at this point in the history
make paths to select consistent with between output module and alca path
  • Loading branch information
davidlange6 committed Jul 15, 2015
2 parents 4915c67 + f581228 commit b697ceb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Expand Up @@ -74,9 +74,19 @@

OutALCARECOEcalCalWElectron=copy.deepcopy(OutALCARECOEcalCalElectron)
OutALCARECOEcalCalWElectron_noDrop=copy.deepcopy(OutALCARECOEcalCalElectron_noDrop)
OutALCARECOEcalCalWElectron.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalCalWElectron') )
OutALCARECOEcalCalWElectron_noDrop.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalCalWElectron') )


OutALCARECOEcalCalZElectron=copy.deepcopy(OutALCARECOEcalCalElectron)
OutALCARECOEcalCalZElectron_noDrop=copy.deepcopy(OutALCARECOEcalCalElectron_noDrop)

OutALCARECOEcalCalZElectron.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalCalZElectron', 'pathALCARECOEcalCalZSCElectron') )
OutALCARECOEcalCalZElectron_noDrop.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalCalZElectron', 'pathALCARECOEcalCalZSCElectron') )



Expand Up @@ -29,5 +29,17 @@

OutALCARECOEcalUncalWElectron=copy.deepcopy(OutALCARECOEcalUncalElectron)
OutALCARECOEcalUncalWElectron_noDrop=copy.deepcopy(OutALCARECOEcalUncalElectron_noDrop)

OutALCARECOEcalUncalWElectron.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalUncalWElectron') )
OutALCARECOEcalUncalWElectron_noDrop.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalUncalWElectron') )


OutALCARECOEcalUncalZElectron=copy.deepcopy(OutALCARECOEcalUncalElectron)
OutALCARECOEcalUncalZElectron_noDrop=copy.deepcopy(OutALCARECOEcalUncalElectron_noDrop)

OutALCARECOEcalUncalZElectron.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalUncalZElectron', 'pathALCARECOEcalUncalZSCElectron') )
OutALCARECOEcalUncalZElectron_noDrop.SelectEvents = cms.untracked.PSet(
SelectEvents = cms.vstring('pathALCARECOEcalUncalZElectron', 'pathALCARECOEcalUncalZSCElectron') )

0 comments on commit b697ceb

Please sign in to comment.