Skip to content

Commit

Permalink
cleanliness (address comment slava77)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Franzoni committed Jul 10, 2017
1 parent a5715cd commit 28e30ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
Expand Up @@ -17,7 +17,7 @@

class ppEra_Run2_2017_trackingOnly(trackingOnly):
def __init__(self):
pp.__init__(self)
trackingOnly.__init__(self)
# tracking only RECO is sufficient, to run high performance BS at PCL;
# some dedicated customization are required, though: customisePostEra_Run2_2017_trackingOnly
self.recoSeq=':reconstruction_trackingOnly'
Expand Down
12 changes: 0 additions & 12 deletions Configuration/DataProcessing/python/Impl/trackingOnly.py
Expand Up @@ -45,18 +45,6 @@ def expressProcessing(self, globalTag, **args):

return process

def alcaHarvesting(self, globalTag, datasetName, **args):

# SEND THIS INTO THE 2017-only GUY
# theCustom = 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017_harvesting_trackingOnly'
# if not args.has_key('customs') :
# args['customs']=[theCustom]
# else :
# if not theCustom in args['customs'] :
# args['customs'].append('TkAlMinBias') # THIS MUST HAVE BEEN WRONGGGG !

return pp.alcaHarvesting(self, globalTag, datasetName, **args)

"""
_ppEra_Run2_2017_trackingOnly
Expand Down
8 changes: 4 additions & 4 deletions Configuration/DataProcessing/python/RecoTLR.py
Expand Up @@ -49,13 +49,13 @@ def customisePostEra_Run2_2017(process):

def customisePostEra_Run2_2017_express_trackingOnly(process):
customisePostEra_Run2_2017(process)
from Calibration.TkAlCaRecoProducers.PCLHPbeamspot_custom import customise_HPbeamspot
customise_HPbeamspot(process)
from Calibration.TkAlCaRecoProducers.PCLHPbeamspot_custom import customise_HPbeamspot as _customise_HPbeamspot
_customise_HPbeamspot(process)
return process

def customisePostEra_Run2_2017_harvesting_trackingOnly(process):
from Calibration.TkAlCaRecoProducers.PCLHPbeamspot_custom import customise_HPbeamspot
customise_HPbeamspot(process)
from Calibration.TkAlCaRecoProducers.PCLHPbeamspot_custom import customise_HPbeamspot as _customise_HPbeamspot
_customise_HPbeamspot(process)
return process


Expand Down

0 comments on commit 28e30ac

Please sign in to comment.