CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
EventContent_cff Namespace Reference

Functions

def _addOutputCommands (mod, newCommands)
 
def SwapKeepAndDrop (l)
 

Function Documentation

def EventContent_cff._addOutputCommands (   mod,
  newCommands 
)
private

Definition at line 857 of file EventContent_cff.py.

857 def _addOutputCommands(mod, newCommands):
858  phase2_timing_layer.toModify(mod, outputCommands = mod.outputCommands + newCommands.outputCommands)
859 
860 _addOutputCommands(FEVTDEBUGEventContent,RecoLocalFastTimeFEVT)
861 _addOutputCommands(FEVTDEBUGHLTEventContent,RecoLocalFastTimeFEVT)
862 _addOutputCommands(FEVTEventContent,RecoLocalFastTimeFEVT)
863 _addOutputCommands(RECOSIMEventContent,RecoLocalFastTimeRECO)
864 _addOutputCommands(AODSIMEventContent,RecoLocalFastTimeAOD)
865 
def _addOutputCommands(mod, newCommands)
def EventContent_cff.SwapKeepAndDrop (   l)

Definition at line 728 of file EventContent_cff.py.

729  r=[]
730  for item in l:
731  if 'keep ' in item:
732  r.append(item.replace('keep ','drop '))
733  elif 'drop ' in item:
734  r.append(item.replace('drop ','keep '))
735  return r
736