Skip to content

Commit

Permalink
python print migration RecoParticleFlow/PFProducer
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 committed Jul 19, 2018
1 parent 61c2452 commit 6a19de7
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from __future__ import print_function

import FWCore.ParameterSet.Config as cms



def usePFWithMethodOne(process):
print '-------------PF with method I -------------'
print 'Assumes that HCAL reco is tuned to method I '
print('-------------PF with method I -------------')
print('Assumes that HCAL reco is tuned to method I ')
process.particleFlowRecHitHBHE.navigator = cms.PSet(
name = cms.string("PFRecHitHCALNavigator")
)
Expand All @@ -14,8 +15,8 @@ def usePFWithMethodOne(process):


def usePFWithMethodOnePointFive(process):
print '-------------PF with method I.5-------------'
print 'Independent of which HCAL reco was used since it reads the time samples from the rechit '
print('-------------PF with method I.5-------------')
print('Independent of which HCAL reco was used since it reads the time samples from the rechit ')


from RecoParticleFlow.PFClusterProducer.particleFlowClusterHBHEMaxSampleTimeSelected_cfi import particleFlowClusterHBHETimeSelected as timeSelector
Expand Down

0 comments on commit 6a19de7

Please sign in to comment.