Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Configuration/Applications/python/ConfigBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@ def prepare_NANO(self, stepSpec = '' ):
''' Enrich the schedule with NANO '''
_,_nanoSeq,_nanoCff = self.loadDefaultOrSpecifiedCFF(stepSpec,self.NANODefaultCFF,self.NANODefaultSeq)
self.scheduleSequence(_nanoSeq,'nanoAOD_step')
custom = "nanoAOD_customizeData" if self._options.isData else "nanoAOD_customizeMC"
custom = "nanoAOD_customizeCommon"
self._options.customisation_file.insert(0,'.'.join([_nanoCff,custom]))
if self._options.hltProcess:
if len(self._options.customise_commands) > 1:
Expand Down
8 changes: 0 additions & 8 deletions PhysicsTools/NanoAOD/python/nano_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,6 @@ def nanoAOD_customizeCommon(process):

return process

def nanoAOD_customizeData(process):
process = nanoAOD_customizeCommon(process)
return process

def nanoAOD_customizeMC(process):
process = nanoAOD_customizeCommon(process)
return process

###increasing the precision of selected GenParticles.
def nanoWmassGenCustomize(process):
pdgSelection="?(abs(pdgId) == 11|| abs(pdgId)==13 || abs(pdgId)==15 ||abs(pdgId)== 12 || abs(pdgId)== 14 || abs(pdgId)== 16|| abs(pdgId)== 24|| pdgId== 23)"
Expand Down