Skip to content
Snippets Groups Projects

DerivationFrameworkMuons: Python 3 fixes

12 files
+ 96
78
Compare changes
  • Side-by-side
  • Inline
Files
12
from __future__ import print_function
def AddJPsiVertexingAlgs(prefix='',addAlgo=True):
@@ -12,7 +13,7 @@ def AddJPsiVertexingAlgs(prefix='',addAlgo=True):
from TrkVertexFitterUtils.TrkVertexFitterUtilsConf import Trk__KalmanVertexUpdator
VertexUpdater = Trk__KalmanVertexUpdator(name = "MuonTP_KalmanVertexUpdator")
ToolSvc += VertexUpdater
print VertexUpdater
print ( VertexUpdater)
@@ -69,7 +70,7 @@ def AddJPsiVertexingAlgs(prefix='',addAlgo=True):
OutputLevel = WARNING )
ToolSvc += MuonTP_Reco_mumu
print MuonTP_Reco_mumu
print (MuonTP_Reco_mumu)
from DerivationFrameworkBPhys.DerivationFrameworkBPhysConf import DerivationFramework__Select_onia2mumu
@@ -87,7 +88,7 @@ def AddJPsiVertexingAlgs(prefix='',addAlgo=True):
OutputLevel = WARNING)
ToolSvc += MuonTP_Select_Jpsi2mumu
print MuonTP_Select_Jpsi2mumu
print (MuonTP_Select_Jpsi2mumu)
if addAlgo:
from DerivationFrameworkMuons.DerivationFrameworkMuonsConf import MuonTPJpsiVertexFittingAlg
Loading