diff --git a/Tools/ValgrindRTTJobs/CMakeLists.txt b/Tools/ValgrindRTTJobs/CMakeLists.txt deleted file mode 100644 index fd1bf46ee12055001d2aba28640fee5a02c6b2f1..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Package: ValgrindRTTJobs -################################################################################ - -# Declare the package name: -atlas_subdir( ValgrindRTTJobs ) - -# Declare the package's dependencies: -atlas_depends_on_subdirs( PRIVATE - Control/AthenaBaseComps - GaudiKernel - Tools/PyJobTransformsCore ) - -# Component(s) in the package: -atlas_add_component( ValgrindRTTJobs - src/*.cxx - src/components/*.cxx - LINK_LIBRARIES AthenaBaseComps GaudiKernel ) - -# Install files from the package: -atlas_install_runtime( test/ValgrindRTTJobs_TestConfiguration.xml share/PostProcessValgrind.py share/memConsumption.C share/historyNightlies.C share/*.supp share/processValgrindOutput.sh share/dhat-postprocess.pl ) - diff --git a/Tools/ValgrindRTTJobs/scripts/valgrind_trf.py b/Tools/ValgrindRTTJobs/scripts/valgrind_trf.py deleted file mode 100755 index 347c2d85aa7594b0aeb851a768d0b3138a5f9d94..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/scripts/valgrind_trf.py +++ /dev/null @@ -1,571 +0,0 @@ -#!/usr/bin/env python - -# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -import math, os, time -from PyJobTransformsCore.trf import * -from PyJobTransformsCore.trfutil import * -from PyJobTransformsCore.full_trfarg import * - -__doc__ ="""Generate events for physics process defined in jobOptions file given in jobConfig argument, run Atlfast""" - -import thread, os - -def TopObserver(ToolName): - print 'Spying the valgrind memory consumption in thread with top.' - # os.system( ' while [ ! -e done ]; do top -b -n 1 | grep memcheck >> top.log 2>&1 ; sleep 5 ; done ' ) - os.system( ' while [ ! -e done ]; do top -b -n 1 | grep -e ' + ToolName + ' -e athena.py >> top.log 2>&1 ; sleep 5 ; done ' ) - print 'we are done !' - -class ValgrindVersionArg(StringArg): - """Valgrind Version""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class ValgrindToolArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class ValgrindToolOptArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class ValgrindGenSuppressionArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class StacktraceDepthArg(IntegerArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - IntegerArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class JobOptionsArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class NeedInputFileArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class CheckFilesArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class AthenaOptArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class RecoTrfArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class ReqCmtConfigArg(StringArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - StringArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -# some tool options -class TrackOriginsArg(BoolArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - BoolArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class DumpInstrArg(BoolArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - BoolArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class InstrAtStartArg(BoolArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - BoolArg.__init__(self,help,name) - - def isFullArgument(self): - return True - -class RecExCommonLinksArg(BoolArg): - """JobOptions""" - def __init__(self,help='default',name='default'): - BoolArg.__init__(self,help,name) - - def defaultHelp(self): - help = Argument.defaultHelp(self) - choicesHelp = self.choicesHelp() - if choicesHelp: help += '. ' + choicesHelp - return help - - def isFullArgument(self): - return True - -class ValgrindJobTransform( JobTransform ): - def __init__(self): - JobTransform.__init__( self, - authors=[ Author('Rolf Seuster', 'seuster AT cern.ch') ] , - help=__doc__ ) - # add arguments - # self.add( MaxEventsArg() ) - self.add( JobOptionsArg(), 'HelloWorldOptions.py' ) - self.add( NeedInputFileArg(), 'None' ) - self.add( RecExCommonLinksArg(), False ) - self.add( TrackOriginsArg(), True ) - self.add( DumpInstrArg(), False ) - self.add( InstrAtStartArg(), True ) - self.add( CheckFilesArg(), 'Nothing' ) - self.add( ValgrindToolArg(), 'None' ) - self.add( ValgrindToolOptArg(), 'None' ) - self.add( ValgrindGenSuppressionArg(), 'None' ) - self.add( RecoTrfArg(), 'None' ) - self.add( AthenaOptArg(), 'None' ) - self.add( ReqCmtConfigArg(), 'None' ) - self.add( ValgrindVersionArg(), '3.8.1' ) - self.add( StacktraceDepthArg(), 5 ) - - def runJob(self): - """Run the athena job. Returns JobReport with the result of the run. - Can be overridden in derived class, typically for a composite transform, - running several athena jobs.""" - - self.logger().info( 'Using %s' % ( trfenv.trfPath) ) - - # - # start with the pre-run actions - # - self.doPreRunActions() - # gather environment only after preRunActions, as they may change the environment - self.gatherEnvironmentInfo() - - # Prepare for running athena job - # - # open the logfile - logFile = fileutil.Tee(self._logFilename,'a') - - # - # get maximum event number, valgrind version and jobOptions to process - # - # maxEventsArg = self.getArgumentOfType("MaxEvents") - # maxEvents = maxEventsArg and maxEventsArg.value() - # self.logger().info( 'In runJob() %d' % ( maxEvents ) ) - - stacktraceDepthArg = self.getArgumentOfType("StacktraceDepth") - stacktraceDepth = stacktraceDepthArg and stacktraceDepthArg.value() - self.logger().info( ' valgrind monitors up to stacktraceDepth: %s' % ( stacktraceDepth ) ) - - valgrindToolArg = self.getArgumentOfType("ValgrindTool") - valgrindTool = valgrindToolArg and valgrindToolArg.value() - self.logger().info( ' will use valgrind tool %s' % ( valgrindTool ) ) - - valgrindToolOptArg = self.getArgumentOfType("ValgrindToolOpt") - valgrindToolOpt = valgrindToolOptArg and valgrindToolOptArg.value() - self.logger().info( ' will use these valgrind tool options %s' % ( valgrindToolOpt ) ) - - valgrindGenSuppressionArg = self.getArgumentOfType("ValgrindGenSuppression") - valgrindGenSuppression = valgrindGenSuppressionArg and valgrindGenSuppressionArg.value() - self.logger().info( ' will produce suppressions file %s' % ( valgrindGenSuppression ) ) - - valVersionArg = self.getArgumentOfType("ValgrindVersion") - valVersion = valVersionArg and valVersionArg.value() - self.logger().info( ' will use valgrind version %s' % ( valVersion ) ) - - jobOptionsArg = self.getArgumentOfType("JobOptions") - jobOptions = jobOptionsArg and jobOptionsArg.value() - self.logger().info( ' processing these jobOptions: %s' % ( jobOptions ) ) - - needInputFileArg = self.getArgumentOfType("NeedInputFile") - needInputFile = needInputFileArg and needInputFileArg.value() - self.logger().info( ' need some input file: %s' % ( needInputFile ) ) - - checkFilesArg = self.getArgumentOfType("CheckFiles") - checkFiles = checkFilesArg and checkFilesArg.value() - self.logger().info( ' doing checks on produced files: %s' % ( checkFiles ) ) - - recoTrfArg = self.getArgumentOfType("RecoTrf") - recoTrf = recoTrfArg and recoTrfArg.value() - self.logger().info( ' calling jobTransform in this way %s' % ( recoTrf.replace('+', ' ').replace('#', '+') ) ) - - athenaOptArg = self.getArgumentOfType("AthenaOpt") - athenaOpt = athenaOptArg and athenaOptArg.value() - self.logger().info( ' calling athena with these optional arguments %s' % ( athenaOpt ) ) - - trackOriginsArg = self.getArgumentOfType("TrackOrigins") - trackOrigins = trackOriginsArg and trackOriginsArg.value() - self.logger().info( ' track origins of uninitialized variables (memory hungry !): %s' % ( trackOrigins ) ) - - dumpInstrArg = self.getArgumentOfType("DumpInstr") - dumpInstr = dumpInstrArg and dumpInstrArg.value() - self.logger().info( ' callgrind: collect at instruction level: %s' % ( dumpInstr ) ) - - instrAtStartArg = self.getArgumentOfType("InstrAtStart") - instrAtStart = instrAtStartArg and instrAtStartArg.value() - self.logger().info( ' callgrind: start collecting at start of program: %s'% ( instrAtStart ) ) - - recExCommonLinksArg = self.getArgumentOfType("RecExCommonLinks") - recExCommonLinks = recExCommonLinksArg and recExCommonLinksArg.value() - self.logger().info( ' run RecExCommon_links.sh before: %s' % ( recExCommonLinks ) ) - - reqCmtConfigArg = self.getArgumentOfType("ReqCmtConfig") - reqCmtConfig = reqCmtConfigArg and reqCmtConfigArg.value() - self.logger().info( ' requiring CMTCONFIG for this job to be %s' % ( reqCmtConfig ) ) - - self.logger().info( 'Doing some tests before executing valgrind' ) - tmp = os.system( ' which athena.py > /dev/null ' ) - self.logger().info( ' Do we have athena setup ? %s' % ( tmp ) ) - - # determine the platform from uname and modify for valgrind usage - platform = os.uname()[4] - valgrindMachPath='ia32' - self.logger().info( ' will use as platform ? %s' % ( platform ) ) - if platform == "x86_64": - valgrindMachPath='amd64' - - gzip_logfile=False - tmp = os.environ['CMTCONFIG'] - mach = tmp.split('-') - if len(mach) != 4: - self.logger().error( 'Cannot determine linux versions and compiler from $CMTCONFIG !! It has %d instead of 4 elements !' % ( len(mach) ) ) - exit(0) - - self.logger().info( ' will also use : %s %s' % ( mach[1], mach[2] ) ) - # valgrindBasePath='/afs/cern.ch/sw/lcg/external/valgrind/3.4.1/' + mach[1] + '_' + valgrindMachPath + '_' + mach[2] - valgrindBasePath='/afs/cern.ch/user/r/rig/sw/vg-3.8.1' - if valVersion == "3.8.0": - valgrindBasePath='/afs/cern.ch/user/r/rig/sw/vg-3.8.0' - gzip_logfile=True - if valVersion == "3.6.1": - valgrindBasePath='/afs/cern.ch/user/r/rig/sw/vg-3.6.1' - gzip_logfile=True - if valVersion == "trunk": - valgrindBasePath='/afs/cern.ch/user/r/rig/sw/vg-trunk' - gzip_logfile=True - - self.logger().info( 'Setting up valgrind from located at %s' % ( valgrindBasePath ) ) - - proName = os.environ['AtlasProject'] - tmp = os.path.split(os.getcwd())[0] - jobName = os.path.split(tmp)[1] - relName = os.environ['AtlasVersion'] - - vetoed = False - - #fll=os.environ["FRONTIER_LOG_LEVEL"] - #fsv=os.environ["FRONTIER_SERVER"] - #os.environ.pop("FRONTIER_LOG_LEVEL") - #os.environ.pop("FRONTIER_SERVER") - - if ( reqCmtConfig != 'None' ): - self.logger().info( ' specific CMTCONFIG required : %s ' % reqCmtConfig ) - vetoed = True - tmp = os.environ['CMTCONFIG'] - if ( tmp.find(reqCmtConfig) > -1 ): - vetoed = False - - # if ( tmp.find("x86_64") > -1 ): - # vetoed = True - - if vetoed: - self.logger().info( ' Vetoed: Yes, we will NOT run valgrind !' ) - os.system('touch vetoed') - self.logger().info( ' Exiting !' ) - sys.exit(2) - else: - self.logger().info( ' Not vetoed, so we will run valgrind !' ) - - if os.access(valgrindBasePath, os.F_OK): - self.logger().info( ' Everything looks OK, get now the jobOptions %s ' % jobOptions ) - get_files ( jobOptions, fromWhere='JOBOPTSEARCHPATH', depth=1, sep=',' ) - - self.logger().info( ' Everything looks OK, get now the suppression file(s)' ) - get_files ( 'valgrindRTT.supp' ) - get_files ( 'Gaudi.supp/Gaudi.supp' ) - get_files ( 'root.supp/root.supp' ) - get_files ( 'newSuppressions.supp' ) - get_files ( 'oracleDB.supp' ) - # get_files ( 'valgrind-python.supp/valgrind-python.supp' ) - - # add valgrind to PATH and LD_LIBRARY_PATH - os.environ['PATH'] = valgrindBasePath + '/bin' + ':' + os.environ['PATH'] - os.environ['LD_LIBRARY_PATH'] = valgrindBasePath + '/lib' + ':' + os.environ['LD_LIBRARY_PATH'] - - tmp = os.system('which valgrind > /dev/null') - self.logger().info( ' do we have valgrind setup correctly ? %s' % ( tmp ) ) - - # somebody compiles in tmp directory, as valgrind also follows this compilation, we - # need to supply absolute paths to all suppression files - currentWorkArea = os.getcwd() - - if ( recExCommonLinks ): - self.logger().info( ' executing RecExCommon_links.sh' ) - tmp = os.system('RecExCommon_links.sh > /dev/null') - - # tmp = os.system('setupLocalDBReplica_CERN.sh COMP200') - # self.logger().info( ' executing RecExCommon_links.sh' ) - - # toolOptions = ' --leak-check=yes --show-reachable=yes --log-file=valgrind.out.process.\%p ' - toolOptions = ' --leak-check=yes --log-file=valgrind.out.process.\%p ' - - valgrindOptions = ' --trace-children=yes --track-fds=yes ' - # valgrindOptions = ' --trace-children=yes --track-fds=yes ' - # only in 3.5.0: - if valVersion == "3.6.1": - valgrindOptions = valgrindOptions + ' --read-var-info=yes' - - valgrindOptions = valgrindOptions + ' --num-callers=' + str(stacktraceDepth) - valgrindOptions = valgrindOptions + ' --suppressions=' + currentWorkArea + '/valgrindRTT.supp ' - valgrindOptions = valgrindOptions + ' --suppressions=' + currentWorkArea + '/newSuppressions.supp ' - valgrindOptions = valgrindOptions + ' --suppressions=' + currentWorkArea + '/oracleDB.supp ' - - # add other suppressions files: - valgrindOptions+= '--suppressions=' + currentWorkArea + '/Gaudi.supp/Gaudi.supp ' - valgrindOptions+= '--suppressions=' + currentWorkArea + '/root.supp/root.supp ' - - # use suppression file shipped with root, if it exists - # probably 99.99% overlap with ATLAS own's but might be a bit newer - root_supp_path = os.path.expandvars('$ROOTSYS/etc/valgrind-root.supp') - if os.path.exists( root_supp_path ): - valgrindOptions+= '--suppressions=$ROOTSYS/etc/valgrind-root.supp ' - # --trace-children-skip=/bin/sh,cmt.exe - - athenaOptions = ' `which python` `which athena.py` ' - - pre=' -c "' - post=' ' - if ( athenaOpt != 'None' ): - athenaOptions += pre + athenaOpt - pre =';' - post='" ' - - if ( needInputFile == "EVGEN" ): - self.logger().info( ' EVGEN file requested, now copying' ) - tmp = os.system('cp /afs/cern.ch/atlas/maxidisk/d33/referencefiles/Sim/EVGEN.pool.root EVGEN.pool.root') - - if ( recoTrf != "None" ): - - if ( needInputFile != 'None' ): - self.logger().info( ' optionally using input file of type: %s ' % needInputFile ) - if ( needInputFile == "ESD" ): - # tmp = os.system('cp /afs/cern.ch/atlas/maxidisk/d33/releases/latest.ESD.pool.root ESD.pool.root') - tmp = os.system('cp /afs/cern.ch/atlas/project/rig/referencefiles/dataStreams_ESD.AOD_50Events/data10_7TeV.00167607.physics_JetTauEtmiss.recon.ESD.f298._lb0087._SFO-4._0001.1_50Events_rel.16.0.3.8_rereco ESD.pool.root') - - if ( needInputFile == "AOD" ): - tmp = os.system('cp /afs/cern.ch/atlas/maxidisk/d33/releases/latest.AOD.pool.root AOD.pool.root') - - from subprocess import Popen, PIPE - cmd = recoTrf.replace('+', ' ').replace('#', '+') - - # first check, that all arguments are allowed (outputfiles often change ...) - output = Popen([cmd.split()[0] + ' -h'],stdout=PIPE, shell=True).communicate()[0] - # self.logger().info( 'Here is the output : ' ) - # for outline in output.split('\n'): - # self.logger().info( 'PIPE >' + outline + '<' ) - allfound=True - newcmd="" - sep="" - for args in cmd.split(): - # self.logger().info( 'CMD >' + args + '<' ) - thisargstr=args - if ( args.find("=")>=0 ): - thisargstr=args.split("=")[0] + '< with value >' + args.split("=")[1] - - if ( output.find(args.split("=")[0]) > 0 or args.split("=")[0].startswith("append_pre") ): - self.logger().info( 'FOUND ARG >' + thisargstr + '<' ) - newcmd += sep + args - sep = " " - else: - self.logger().info( ' NOT FOUND ARG >' + thisargstr + '<' ) - # an argument for the job transform wasn;t found ! - # remove it - allfound=False - - self.logger().info( 'ARG CMP old>' + cmd + '<' ) - self.logger().info( 'ARG CMP new>' + newcmd + '<' ) - if ( cmd != newcmd ): - cmd = newcmd - - self.logger().info( 'running dummy jobTransform to create pickle file' ) - cmd += ' --athenaopts="--config-only=rec.pkg --keep-configuration" --omitvalidation=ALL ' - self.logger().info( ' cmd : ' + cmd ) - output = Popen([cmd],stdout=PIPE, shell=True).communicate()[0] - self.logger().info( 'Here is the output :' ) - for outline in output.split('\n'): - self.logger().info( 'TRF >' + outline + '<' ) - - os.system('ls -la >& dir.log') - - else: - - if ( needInputFile != 'None' ): - self.logger().info( ' reco_trf will use input file of type: %s ' % needInputFile ) - if ( needInputFile == "ESD" ): - athenaOptions += pre + 'from AthenaCommon.AthenaCommonFlags import athenaCommonFlags;athenaCommonFlags.FilesInput=[\'/afs/cern.ch/atlas/maxidisk/d33/releases/latest.ESD.pool.root\']' - pre =';' - post='" ' - - if ( needInputFile == "AOD" ): - athenaOptions += pre + 'from AthenaCommon.AthenaCommonFlags import athenaCommonFlags;athenaCommonFlags.FilesInput=[\'/afs/cern.ch/atlas/maxidisk/d33/releases/latest.AOD.pool.root\']' - pre =';' - post='" ' - - cmd = athenaOptions + post + jobOptions - cmd += ' --config-only=rec.pkg --keep-configuration' - - from subprocess import Popen, PIPE - self.logger().info( 'running dummy athena job to create pickle file' ) - self.logger().info( ' cmd : ' + cmd ) - output = Popen([cmd],stdout=PIPE, shell=True).communicate()[0] - self.logger().info( 'Here is the output :' ) - for outline in output.split('\n'): - self.logger().info( 'TRF >' + outline + '<' ) - - os.system('ls -la >& dir.log') - - athenaOptions += post - - athenaOptions += ' --stdcmalloc rec.pkg.pkl > out.valgrind.log 2>&1 ' - - toolName = 'memcheck' - - trackOriginsStr = '' - if ( trackOrigins ): - trackOriginsStr = '--track-origins=yes' - - # toolOptions += " --malloc-fill=0xF0 --free-fill=0xF --error-limit=no --main-stacksize=268435456 --max-stackframe=33554432 " + trackOriginsStr - toolOptions += " --malloc-fill=0xF0 --free-fill=0xF --error-limit=no " + trackOriginsStr - - if ( valgrindTool == "callgrind" ): - toolOptions = ' --tool=callgrind --callgrind-out-file=callgrind.out.process.\%p ' - if dumpInstr: - toolOptions += ' --dump-instr=yes ' - if not instrAtStart: - toolOptions += ' --instr-atstart=no ' - toolName = valgrindTool - - if ( valgrindTool == "massif" ): - toolOptions = ' --tool=massif --massif-out-file=massif.out.process.\%p --detailed-freq=1 --max-snapshots=300' - toolName = valgrindTool - - if ( valgrindTool == "dhat" ): - toolOptions = ' --tool=exp-dhat --show-top-n=2500 ' - toolName = valgrindTool - - if ( valgrindTool == "ptrcheck" ): - toolOptions = ' --tool=exp-ptrcheck --error-limit=no ' - # to speed up ptrcheck, one can add --enable-sg-checks=no - toolName = valgrindTool - - if ( valgrindGenSuppression == "yes" ): - toolOptions += ' --gen-suppressions=all' - - if ( valgrindToolOpt != 'None' ): - toolOptions += valgrindToolOpt - - self.logger().info( ' now starting TopObserver !' ) - thread.start_new_thread( TopObserver, ( toolName, ) ) - - if not vetoed: - self.logger().info( ' now starting valgrind !' ) - string = ' /usr/bin/time valgrind ' + toolOptions + valgrindOptions + athenaOptions - self.logger().info( ' now calling valgrind with : <%s>' % string ) - tmp = os.system( string ) - if gzip_logfile: - tmp = os.system( "gzip out.valgrind.log" ) - # tmp = os.system( athenaOptions ) - else: - self.logger().info( ' job was vetoed ! based on %s %s' % ( proName, jobName )) - tmp = os.system( 'touch veto.log' ) - - # testing, no valgrind ... - # tmp = os.system( ' athena.py --stdcmalloc ' + jobOptions + ' > out.valgrind.log 2>&1 ' ) - - self.logger().info( ' valgrind returned with code %s' % ( tmp ) ) - tmp = os.system('touch done') - time.sleep(5) - - - if ( valgrindTool == "callgrind" ): - tmp = os.system( "mkdir t; cp callgrind.out.process.`grep 'ValgrindHelperAlg\ *INFO ValgrindHelperAlg:' out.valgrind.log | gawk '{ print $NF }'` t; gzip callgrind.out.process.*" ) - - # clean up the local copies of the input files - if ( recoTrf != "None" ): - if ( needInputFile != 'None' ): - self.logger().info( ' cleaning up local copies of the input file of type: %s ' % needInputFile ) - if ( needInputFile == "ESD" ): - tmp = os.system('rm -f ESD.pool.root') - - if ( needInputFile == "AOD" ): - tmp = os.system('rm -f AOD.pool.root') - - if ( needInputFile == "EVGEN" ): - self.logger().info( ' removing local copy of EVGEN file' ) - tmp = os.system('rm -f EVGEN.pool.root') - - #if ( checkFiles == 'diff' and needInputFile != 'None' ): - # tmp = os.system('diffPoolFiles.py -r ' + needInputFile + '.pool.root -f copy_' + needInputFile + '.pool.root > diffFiles.log 2>&1') - # - #if ( checkFiles.beginsWith('check:') ): - # tmp = os.system('checkFile.py ' + checkFiles.rpartition(':') + ' > checkFile.log 2>&1') - - athenaReport = JobReport() - - thread.exit() - - else: - self.logger().error( ' PATH does not point to a valid valgrind installation ! Cannot run !' ) - self.logger().error( ' PATH: %s' % valgrindBasePath ) - - # overwrite producer for new errors that are added - athenaReport.setProducer(self.name(),self.version()) - - #os.environ["FRONTIER_LOG_LEVEL"]=fll - #os.environ["FRONTIER_SERVER"]=fsv - - return athenaReport - -# execute it if not imported -if __name__ == '__main__': - trf = ValgrindJobTransform() - sys.exit(trf.exeSysArgs().exitCode()) diff --git a/Tools/ValgrindRTTJobs/share/AtlasValgrind.supp b/Tools/ValgrindRTTJobs/share/AtlasValgrind.supp deleted file mode 100644 index 26326a3c5102294633cb2949f05ae18067221eb6..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/AtlasValgrind.supp +++ /dev/null @@ -1,1635 +0,0 @@ - -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerISsE3GetEv - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IServiceSsP11ISvcLocatorEE3GetEv - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_F2D0F4A114ToolSvc_dict20C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} - -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI17EvtPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN72_GLOBAL__N_.._src_PersistencySvc_EvtPersistencySvc.cpp_EF105EC1_8431AE9F7FactoryI17EvtPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} - -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI23HistogramPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN78_GLOBAL__N_.._src_PersistencySvc_HistogramPersistencySvc.cpp_9D2164D3_43B39ECB7FactoryI23HistogramPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} - -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerISsE3GetEv - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IServiceSsP11ISvcLocatorEE3GetEv - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F14ToolSvc_dict20C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TArray leak - Memcheck:Leak - fun:_Znaj - fun:_ZN7TArrayI3SetEi - fun:_ZN6TColor10SetPaletteEiPi - fun:_ZN6TStyle10SetPaletteEiPi - fun:_ZN6TStyle5ResetEPKc - fun:_ZN6TStyleC1EPKcS1_ -} -{ - TStorage leak - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZNK4ROOT20TQObjectInitBehavior11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES2_S2_ii - fun:_ZN4ROOT17TGenericClassInfo8GetClassEv - fun:_ZN8TQObject5ClassEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev -} -{ - TString leak - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TStringC1EPKc - fun:_ZN10TObjStringC1EPKc - fun:_ZN4ROOT18TMapTypeToClassRec3AddEPKcRP9TClassRec - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__store_dictposition - fun:G__storerewindposition - fun:G__exec_text - fun:G__platformMacro - fun:G__set_stdio -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex5ScopeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex5ScopeESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex5ScopeESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex5ScopeESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase11AddSubScopeERKNS0_5ScopeE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2EPKcNS0_4TYPEE - fun:_ZN4ROOT6Reflex9NamespaceC1EPKc - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv -} -{ - CINT Leak - Memcheck:Leak - fun:_Znwj - fun:G__call_setup_funcs - fun:_ZN24G__cpp_setup_initG__MathC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK8TComplex - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIPKcE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2EPKcNS0_4TYPEE - fun:_ZN4ROOT6Reflex9NamespaceC1EPKc - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerISsE3GetEv - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IServiceSsP11ISvcLocatorEE3GetEv - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F14ToolSvc_dict20C1Ev -} -{ - Memcheck:Leak - fun:calloc - fun:_dlerror_run - fun:dlopen@GLIBC_2.0 - fun:_ZN4ROOT6Reflex13SharedLibrary4LoadEv - fun:_ZN4ROOT6Reflex13PluginService14LoadFactoryLibERKSs - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList10NewOptLinkEP7TObjectPKcP8TObjLink - fun:_ZN5TList7AddLastEP7TObjectPKc - fun:_ZN5TList3AddEP7TObjectPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Memcheck:Leak - fun:malloc - fun:G__getparameterlist - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerIN2SG6FolderEE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIN2SG6FolderEEERKNS0_4TypeEv - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C12Folder_dict8C1Ev -} -{ - Memcheck:Leak - fun:malloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK10TObjString - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK8TQObject - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6TLimit7fgTableE - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libHist.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libHist.so - fun:_dl_init -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerIN2SG6FolderEE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIN2SG6FolderEEERKNS0_4TypeEv - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C12Folder_dict8C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Base1 -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gCINTMutex - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - fun:_dl_init -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint12SetClassInfoEP6TClassb - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN6TClassC1EPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN4ROOT11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZNK4ROOT20TDefaultInitBehavior11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES2_S2_ii -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement - fun:G__loadfile_tmpfile -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIjE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__stack_instance - fun:G__resetplocal - fun:_Z20G__cpp_setup_global0v - fun:G__cpp_setup_globalG__Math - fun:G__cpp_setupG__Math -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex3AnyEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex3AnyESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6resizeEjRKS2_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex4TypeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex4TypeESaIS2_EE11_M_allocateEj - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex4TypeESaIS2_EEC2EjRKS3_ - fun:_ZNSt6vectorIN4ROOT6Reflex4TypeESaIS2_EEC1ERKS4_ - fun:_ZN4ROOT6Reflex8FunctionC1ERKNS0_4TypeERKSt6vectorIS2_SaIS2_EERKSt9type_infoNS0_4TYPEE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__getparameterlist - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList10NewOptLinkEP7TObjectPKcP8TObjLink - fun:_ZN5TList7AddLastEP7TObjectPKc - fun:_ZN5TList3AddEP7TObjectPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7PointerC1ERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateIP10IInterfaceS4_EET_RKSsRKT0_ -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIPKcE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT14DefineBehaviorEP8TQObjectS1_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK6TTimer - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - CINT leak - Memcheck:Leak - fun:realloc - fun:G__add_setup_func - fun:_ZN26G__cpp_setup_initG__MatrixC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK12TMatrixTBaseIfE - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libMatrix.so -} -{ - CINT leak - Memcheck:Leak - fun:realloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7PointerC1ERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7TypedefC1EPKcRKNS0_4TypeENS0_4TYPEES6_ - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsPKc - fun:_ZNK4ROOT6Reflex12PropertyList11AddPropertyERKSsPKc - fun:_ZN4ROOT6Reflex6ReflexC1Ev -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:realloc - fun:_dl_lookup_symbol_x - fun:_dl_relocate_object - fun:dl_open_worker - fun:_dl_catch_error -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:add_to_global - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:_dl_map_object_deps - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:_dl_new_object - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:open_path - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error - fun:_dl_map_object_deps -} -{ - dlopen leak - Memcheck:Leak - fun:calloc - fun:_dl_check_map_versions - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:calloc - fun:_dl_new_object - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:dl_open_worker - fun:_dl_catch_error -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderI11InterfaceIDE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement - fun:G__loadfile_tmpfile -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex10MemberBaseC2EPKcRKNS0_4TypeENS0_4TYPEEj - fun:_ZN4ROOT6Reflex14FunctionMemberC1EPKcRKNS0_4TypeEPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S3_jNS0_4TYPEE - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248227PartitionSwitchTool_dict128C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex19FunctionTypeBuilderERKNS0_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_info - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IAlgToolSsSsPK10IInterfaceEE3GetEv - fun:_ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248227PartitionSwitchTool_dict128C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248229s_PartitionSwitchTool_dict128E -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIKP10IInterfaceEERKNS0_4TypeEv - fun:_ZN4ROOT6Reflex11ValueObjectC1IKP10IInterfaceEERT_ -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__tagtable_setup - fun:G__cpp_setup_tagtableG__Base3 - fun:G__cpp_setupG__Base3 - fun:G__call_setup_funcs -} -{ - Graf leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TWebPaletteC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gWebImagePalette - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so -} -{ - Graf leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TWebPaletteC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gWebImagePalette - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - ROOT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList7NewLinkEP7TObjectP8TObjLink - fun:_ZN5TList7AddLastEP7TObject - fun:_ZN5TList3AddEP7TObject - fun:_ZN10THashTable3AddEP7TObject - fun:_ZN4TMap3AddEP7TObjectS1_ -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint17UpdateListOfTypesEv - fun:_ZN5TROOT14GetListOfTypesEb - fun:_ZNK5TROOT7GetTypeEPKcb - fun:_ZN6TClass8GetClassEPKcb - fun:_ZNK5TROOT8GetClassEPKcb -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage5AllocEj - fun:_ZN9TObjArray4InitEii - fun:_ZN9TObjArrayC1Eii - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN6TClassC1EPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_Z6StrDupPKc - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znwj - fun:_ZN11TClassTable11FindElementEPKcb - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN10THashTableC1Eii - fun:_ZN4TMapC1Eii - fun:_ZN4ROOT18TMapTypeToClassRecC1Ev - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN4TMap3AddEP7TObjectS1_ - fun:_ZN4ROOT18TMapTypeToClassRec3AddEPKcRP9TClassRec - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN12TObjectTableC1Ei - fun:_ZN12TObjectTable6AddObjEP7TObject - fun:_ZN7TObjectC2Ev - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex11OwnedMemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex11OwnedMemberESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex11OwnedMemberESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex11OwnedMemberESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase17AddFunctionMemberERKNS0_6MemberE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex6MemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex6MemberESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex6MemberESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex6MemberESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase17AddFunctionMemberERKNS0_6MemberE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderISsE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex10MemberBaseC2EPKcRKNS0_4TypeENS0_4TYPEEj - fun:_ZN4ROOT6Reflex14FunctionMemberC1EPKcRKNS0_4TypeEPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S3_jNS0_4TYPEE - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567116NTupleSvc_dict48C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerI10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex3AnyEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex3AnyESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6resizeEjRKS2_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsPKc - fun:_ZNK4ROOT6Reflex12PropertyList11AddPropertyERKSsPKc - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev -} -{ - TUnix leak - Memcheck:Leak - fun:_Znaj - fun:_ZN7TSystemC2EPKcS1_ - fun:_ZN11TUnixSystemC1Ev - fun:_ZN5TROOT10InitSystemEv - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerI10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIKP10IInterfaceEERKNS0_4TypeEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateIP10IInterfaceS4_EET_RKSsRKT0_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:calloc - fun:G__malloc - fun:_Z16G__alloc_var_refIiPFl8G__valueEEviT0_PcP12G__var_arrayiRS0_ - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__tagtable_setup - fun:G__cpp_setup_tagtableG__Base3 - fun:G__cpp_setupG__Base3 - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_typename - fun:G__search_typename2 - fun:G__cpp_setup_typetableG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Cont -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:G__cpp_setup_inheritanceG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567116NTupleSvc_dict48C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567118s_NTupleSvc_dict48E - obj:/afs/cern.ch/atlas/offline/external/GAUDI/v19r6p4-LCG54f/GaudiSvc/i686-slc4-gcc34-dbg/libGaudiSvc.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:G__cpp_setup_inheritanceG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__savestring - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Cont - fun:G__cpp_setupG__Cont -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio - fun:G__main -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_next - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix -} - - - - - -{ - PersistencySvc factory leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI17EvtPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN72_GLOBAL__N_.._src_PersistencySvc_EvtPersistencySvc.cpp_EF105EC1_4A5556AB7FactoryI17EvtPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - PersistencySvc factory leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI23HistogramPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN78_GLOBAL__N_.._src_PersistencySvc_HistogramPersistencySvc.cpp_9D2164D3_20537EF17FactoryI23HistogramPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIP8PropertyE8allocateEjPKv - fun:_ZNSt12_Vector_baseIP8PropertySaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIP8PropertySaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIP8PropertySaIS1_EE9push_backERKS1_ - fun:_ZN11PropertyMgr15declarePropertyIbEEvRKSsRT_S2_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIbEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyIbEE10StatusCodeRKSsRT_S3_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISsEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyISsEE10StatusCodeRKSsRT_S3_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISsE8allocateEjPKv - fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEj - fun:_ZNSt12_Vector_baseISsSaISsEEC2EjRKS0_ - fun:_ZNSt6vectorISsSaISsEEC1ERKS1_ - fun:_ZN15BoundedVerifierISt6vectorISsSaISsEEEC1ERKS3_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10HistorySvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_HistorySvc_HistorySvc.cpp_9D2164D3_852D11FA7FactoryI10HistorySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12EventLoopMgrE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_ApplicationMgr_EventLoopMgr.cpp_9D2164D3_238F8A117FactoryI12EventLoopMgrFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISt6vectorISsSaISsEE15BoundedVerifierIS2_EEC1ES4_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI10MessageSvcEEvMT_FvRS_EPS2_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN5Gaudi7Parsers13PropertyEntryEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE13insert_uniqueERKS5_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10EvtDataSvcE6createERKSsP11ISvcLocator - fun:_ZN58_GLOBAL__N_.._src_DataSvc_EvtDataSvc.cpp_EF105EC1_F55F41E77FactoryI10EvtDataSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI23HistogramPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN78_GLOBAL__N_.._src_PersistencySvc_HistogramPersistencySvc.cpp_9D2164D3_20537EF17FactoryI23HistogramPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_253EDA187FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI7ServiceEEvMT_FvRS_EPS2_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN13JobOptionsSvc20fillServiceCatalogueEv - fun:_ZN13JobOptionsSvc11readOptionsERKSsS1_ - fun:_ZN13JobOptionsSvc10initializeEv - fun:_ZN14ApplicationMgr9i_startupEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI14ApplicationMgrEEvMT_FvRS_EPS2_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP8IServiceEE8allocateEjPKv - fun:_ZNSt10_List_baseIP8IServiceSaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIP8IServiceSaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIP8IServiceSaIS1_EE9_M_insertESt14_List_iteratorIS1_ERKS1_ - fun:_ZNSt4listIP8IServiceSaIS1_EE9push_backERKS1_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI16ProxyProviderSvcE6createERKSsP11ISvcLocator - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C7FactoryI16ProxyProviderSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt6vectorISsSaISsEEEEvRKSsRT_S5_ - fun:_ZNK7Service15declarePropertyISt6vectorISsSaISsEEEE10StatusCodeRKSsRT_S6_ - fun:_ZN10ClassIDSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10ClassIDSvcE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_components_CLIDComps_entries.cxx_9D2164D3_6E09122B7FactoryI10ClassIDSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN11IncidentSvc8ListenerEEE8allocateEjPKv - fun:_ZNSt10_List_baseIN11IncidentSvc8ListenerESaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIN11IncidentSvc8ListenerESaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIN11IncidentSvc8ListenerESaIS1_EE6insertESt14_List_iteratorIS1_ERKS1_ - fun:_ZN11IncidentSvc11addListenerEP17IIncidentListenerRKSslbb -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS6_11_NoCaseCmp_ESaIS2_IS3_S7_EEEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE14_M_create_nodeERKSA_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE9_M_insertEPSt18_Rb_tree_node_baseSI_RKSA_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE13insert_uniqueESt17_Rb_tree_iteratorISA_ERKSA_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeISt4pairIP8IServiceiEEE8allocateEjPKv - fun:_ZNSt10_List_baseISt4pairIP8IServiceiESaIS3_EE11_M_get_nodeEv - fun:_ZNSt4listISt4pairIP8IServiceiESaIS3_EE14_M_create_nodeERKS3_ - fun:_ZNSt4listISt4pairIP8IServiceiESaIS3_EE6insertESt14_List_iteratorIS3_ERKS3_ - fun:_ZN14ServiceManager10addServiceEP8IServicei -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10ClassIDSvcE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_components_CLIDComps_entries.cxx_9D2164D3_6E09122B7FactoryI10ClassIDSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI17EvtPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN72_GLOBAL__N_.._src_PersistencySvc_EvtPersistencySvc.cpp_EF105EC1_4A5556AB7FactoryI17EvtPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI7ToolSvcE6createERKSsP11ISvcLocator - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F7FactoryI7ToolSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13AlgContextSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_AlgContextSvc_AlgContextSvc.cpp_9D2164D3_0D7C1DBD7FactoryI13AlgContextSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI11IncidentSvcE6createERKSsP11ISvcLocator - fun:_ZN63_GLOBAL__N_.._src_IncidentSvc_IncidentSvc.cpp_9D2164D3_6CD632E57FactoryI11IncidentSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13AppMgrRunableE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_ApplicationMgr_AppMgrRunable.cpp_9D2164D3_266AD5697FactoryI13AppMgrRunableFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIiEEvRKSsRT_S2_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN2SG10StringPoolC1Ev - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIjEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyIjEE10StatusCodeRKSsRT_S3_ - fun:_ZN7DataSvcC2ERKSsP11ISvcLocator - fun:_ZN10EvtDataSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10EvtDataSvcE6createERKSsP11ISvcLocator -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN7DataSvc9i_setRootERKSsP10DataObject - fun:_ZN7DataSvc7setRootERKSsP10DataObject - fun:_ZN12HistogramSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt3mapISsN5Gaudi10Histo1DDefESt4lessISsESaISt4pairIKSsS3_EEEEEvRS7_RT_SB_ - fun:_ZNK7Service15declarePropertyISt3mapISsN5Gaudi10Histo1DDefESt4lessISsESaISt4pairIKSsS3_EEEEE10StatusCodeRS7_RT_SC_ - fun:_ZN12HistogramSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEEvRS5_RT_S9_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI19MinimalEventLoopMgrEEvMT_FvRS_EPS2_ - fun:_ZN19MinimalEventLoopMgrC2ERKSsP11ISvcLocator - fun:_ZN12EventLoopMgrC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12EventLoopMgrE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_ApplicationMgr_EventLoopMgr.cpp_9D2164D3_238F8A117FactoryI12EventLoopMgrFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11IncidentSvc11addListenerEP17IIncidentListenerRKSslbb - fun:_ZN10ClassIDSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService - fun:_ZN14ServiceManager10getServiceERKSsRP8IServiceb -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPK8PropertyE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPK8PropertySaIS2_EE11_M_allocateEj - fun:_ZNSt12_Vector_baseIPK8PropertySaIS2_EEC2EjRKS3_ - fun:_ZNSt6vectorIPK8PropertySaIS2_EEC1ERKS4_ - fun:_ZNSt4pairIKSsSt6vectorIPK8PropertySaIS4_EEEC1ERKS7_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN19JobOptionsCatalogueC1Ev - fun:_ZN13JobOptionsSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_253EDA187FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIi15BoundedVerifierIiEEC1ES1_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ERKSsS4_S1_ - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN13JobOptionsSvc20fillServiceCatalogueEv - fun:_ZN13JobOptionsSvc11readOptionsERKSsS1_ - fun:_ZN13JobOptionsSvc10initializeEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12HistogramSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService - fun:_ZN14ServiceManager10getServiceERKSsRP8IServiceb - fun:_ZN11ISvcLocator7serviceI15IDataManagerSvcEE10StatusCodeRKSsRPT_b -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI12HistogramSvcEEvMT_FvRS_EPS2_ - fun:_ZN12HistogramSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN19MinimalEventLoopMgr10initializeEv - fun:_ZN12EventLoopMgr10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager18initializeServicesEv - fun:_ZN14ApplicationMgr10initializeEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ES1_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIb15BoundedVerifierIbEEC1ES1_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIj15BoundedVerifierIjEEC1ES1_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN16AlgorithmManagerC1EP10IInterface - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} - - -##################### -# frontier_client -{ - FrontierClient:frontier_str_copy/wordcopy_fwd_dest_aligned - Memcheck:Addr8 - fun:_wordcopy_fwd_dest_aligned - fun:bcopy - fun:frontier_str_copy -} - diff --git a/Tools/ValgrindRTTJobs/share/DigiNoPileUp_All.py b/Tools/ValgrindRTTJobs/share/DigiNoPileUp_All.py deleted file mode 100644 index 3433f3994461824bf8ddbb006ce18a1844f92c39..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/DigiNoPileUp_All.py +++ /dev/null @@ -1,53 +0,0 @@ -# This is the configuration file to run ATLAS Digitization -# Use the following switches for: -# jobproperties.AthenaCommonFlags.EvtMax = Number of events to digitize (set to -1 for all) -# jobproperties.AthenaCommonFlags.SkipEvents = Number of events from input file collection to skip -# jobproperties.AthenaCommonFlags.PoolHitsInput= Input collections. The list of files with the hits to digitize -# jobproperties.AthenaCommonFlags.PoolRDOOutput= Output file name - -#-------------------------------------------------------------- -# AthenaCommon configuration -#-------------------------------------------------------------- -from AthenaCommon.AthenaCommonFlags import jobproperties -jobproperties.AthenaCommonFlags.AllowIgnoreConfigError=False #This job will stop if an include fails. - -jobproperties.AthenaCommonFlags.EvtMax = 5 -jobproperties.AthenaCommonFlags.PoolHitsInput = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.HITS.e835_s1310_s1300/HITS.508808._000857.pool.root.1"] -jobproperties.AthenaCommonFlags.PoolRDOOutput = "DigitizationOutput.pool.root" - -#-------------------------------------------------------------- -# Digitiziation and Pileup configuration -#-------------------------------------------------------------- -from Digitization.DigitizationFlags import digitizationFlags -digitizationFlags.IOVDbGlobalTag = 'OFLCOND-SDR-BS7T-05-14' -digitizationFlags.overrideMetadata = ['SimLayout', 'PhysicsList'] -# digitizationFlags.doInDetNoise = True -# digitizationFlags.doCaloNoise = True -# digitizationFlags.doMuonNoise = True -# digitizationFlags.doLowPtMinBias = True -# digitizationFlags.numberOfLowPtMinBias = 2.3 -# digitizationFlags.LowPtMinBiasInputCols = ["", "", "" ] -# digitizationFlags.doCavern = True -# digitizationFlags.numberOfCavern = 2 -# digitizationFlags.cavernInputCols = ["", ""] -# digitizationFlags.doBeamGas = True -# digitizationFlags.numberOfBeamGas = 0.5 -# digitizationFlags.beamGasInputCols = ["", ""] - -#-------------------------------------------------------------- -# Global flags. Like eg the DD version: -#-------------------------------------------------------------- -from AthenaCommon.GlobalFlags import jobproperties -jobproperties.Global.DetDescrVersion = 'ATLAS-GEO-18-01-01' - -#-------------------------------------------------------------------- -# DetFlags. Use to turn on/off individual subdetector or LVL1 trigger -#-------------------------------------------------------------------- -from AthenaCommon.DetFlags import DetFlags -DetFlags.ID_setOn() -DetFlags.Calo_setOn() -DetFlags.Muon_setOn() -DetFlags.Truth_setOn() -DetFlags.LVL1_setOn() - -include("Digitization/Digitization.py") diff --git a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_CaloOnly.py b/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_CaloOnly.py deleted file mode 100644 index b4aef3bf5af715152d4a4c72ad90399e33e95e4c..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_CaloOnly.py +++ /dev/null @@ -1,66 +0,0 @@ -# This is the configuration file to run ATLAS Digitization -# Use the following switches for: -# jobproperties.AthenaCommonFlags.EvtMax = Number of events to digitize (set to -1 for all) -# jobproperties.AthenaCommonFlags.SkipEvents = Number of events from input file collection to skip -# jobproperties.AthenaCommonFlags.PoolHitsInput= Input collections. The list of files with the hits to digitize -# jobproperties.AthenaCommonFlags.PoolRDOOutput= Output file name - -#-------------------------------------------------------------- -# AthenaCommon configuration -#-------------------------------------------------------------- -from AthenaCommon.AthenaCommonFlags import jobproperties -jobproperties.AthenaCommonFlags.EvtMax=5 -jobproperties.AthenaCommonFlags.PoolHitsInput = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.HITS.e835_s1310_s1300/HITS.508808._000857.pool.root.1"] -jobproperties.AthenaCommonFlags.PoolRDOOutput="DigitizationOutput.pool.root" - -#-------------------------------------------------------------- -# Digitiziation and Pileup configuration -#-------------------------------------------------------------- -from Digitization.DigitizationFlags import digitizationFlags -digitizationFlags.doLowPtMinBias = True -digitizationFlags.doHighPtMinBias = True -digitizationFlags.doCavern = True -digitizationFlags.doBeamGas = False -digitizationFlags.doBeamHalo = False - -digitizationFlags.bunchSpacing = 25 -digitizationFlags.numberOfCavern = 2 -digitizationFlags.numberOfLowPtMinBias = 2.3 -digitizationFlags.numberOfHighPtMinBias = 0.0002 -digitizationFlags.initialBunchCrossing = -32 #default -digitizationFlags.finalBunchCrossing = 32 #default -digitizationFlags.IOVDbGlobalTag = 'OFLCOND-SDR-BS7T-05-14' -digitizationFlags.overrideMetadata = ['SimLayout', 'PhysicsList'] - -digitizationFlags.LowPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._000382.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001308.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001883.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001944.pool.root.1"] - -digitizationFlags.HighPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._001496.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._002374.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._007836.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._009288.pool.root.1"] - -digitizationFlags.cavernInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001423.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001891.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._002585.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._003578.pool.root.1"] - -#-------------------------------------------------------------- -# Global flags. Like eg the DD version: -#-------------------------------------------------------------- -from AthenaCommon.GlobalFlags import jobproperties -jobproperties.Global.DetDescrVersion = 'ATLAS-GEO-18-01-01' - -#-------------------------------------------------------------------- -# DetFlags. Use to turn on/off individual subdetector or LVL1 trigger -#-------------------------------------------------------------------- -from AthenaCommon.DetFlags import DetFlags -DetFlags.ID_setOff() -DetFlags.Calo_setOn() -DetFlags.Muon_setOff() -DetFlags.Truth_setOn() -DetFlags.LVL1_setOff() - -include( "Digitization/Digitization.py" ) diff --git a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_InDetOnly.py b/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_InDetOnly.py deleted file mode 100644 index 0495f993a6efa5ab1a5dc594d9a540234eec4178..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_InDetOnly.py +++ /dev/null @@ -1,66 +0,0 @@ -# This is the configuration file to run ATLAS Digitization -# Use the following switches for: -# jobproperties.AthenaCommonFlags.EvtMax = Number of events to digitize (set to -1 for all) -# jobproperties.AthenaCommonFlags.SkipEvents = Number of events from input file collection to skip -# jobproperties.AthenaCommonFlags.PoolHitsInput= Input collections. The list of files with the hits to digitize -# jobproperties.AthenaCommonFlags.PoolRDOOutput= Output file name - -#-------------------------------------------------------------- -# AthenaCommon configuration -#-------------------------------------------------------------- -from AthenaCommon.AthenaCommonFlags import jobproperties -jobproperties.AthenaCommonFlags.EvtMax=5 -jobproperties.AthenaCommonFlags.PoolHitsInput = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.HITS.e835_s1310_s1300/HITS.508808._000857.pool.root.1"] -jobproperties.AthenaCommonFlags.PoolRDOOutput="DigitizationOutput.pool.root" - -#-------------------------------------------------------------- -# Digitiziation and Pileup configuration -#-------------------------------------------------------------- -from Digitization.DigitizationFlags import digitizationFlags -digitizationFlags.doLowPtMinBias = True -digitizationFlags.doHighPtMinBias = True -digitizationFlags.doCavern = True -digitizationFlags.doBeamGas = False -digitizationFlags.doBeamHalo = False - -digitizationFlags.bunchSpacing = 25 -digitizationFlags.numberOfCavern = 2 -digitizationFlags.numberOfLowPtMinBias = 2.3 -digitizationFlags.numberOfHighPtMinBias = 0.0002 -digitizationFlags.initialBunchCrossing = -32 #default -digitizationFlags.finalBunchCrossing = 32 #default -digitizationFlags.IOVDbGlobalTag = 'OFLCOND-SDR-BS7T-05-14' -digitizationFlags.overrideMetadata = ['SimLayout', 'PhysicsList'] - -digitizationFlags.LowPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._000382.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001308.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001883.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001944.pool.root.1"] - -digitizationFlags.HighPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._001496.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._002374.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._007836.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._009288.pool.root.1"] - -digitizationFlags.cavernInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001423.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001891.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._002585.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._003578.pool.root.1"] - -#-------------------------------------------------------------- -# Global flags. Like eg the DD version: -#-------------------------------------------------------------- -from AthenaCommon.GlobalFlags import jobproperties -jobproperties.Global.DetDescrVersion = 'ATLAS-GEO-18-01-01' - -#-------------------------------------------------------------------- -# DetFlags. Use to turn on/off individual subdetector or LVL1 trigger -#-------------------------------------------------------------------- -from AthenaCommon.DetFlags import DetFlags -DetFlags.ID_setOn() -DetFlags.Calo_setOff() -DetFlags.Muon_setOff() -DetFlags.Truth_setOn() -DetFlags.LVL1_setOff() - -include( "Digitization/Digitization.py" ) diff --git a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_MuonOnly.py b/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_MuonOnly.py deleted file mode 100644 index 4ae7c76de717d02546d24bdcd9b0f5581b85eb03..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_MuonOnly.py +++ /dev/null @@ -1,66 +0,0 @@ -# This is the configuration file to run ATLAS Digitization -# Use the following switches for: -# jobproperties.AthenaCommonFlags.EvtMax = Number of events to digitize (set to -1 for all) -# jobproperties.AthenaCommonFlags.SkipEvents = Number of events from input file collection to skip -# jobproperties.AthenaCommonFlags.PoolHitsInput= Input collections. The list of files with the hits to digitize -# jobproperties.AthenaCommonFlags.PoolRDOOutput= Output file name - -#-------------------------------------------------------------- -# AthenaCommon configuration -#-------------------------------------------------------------- -from AthenaCommon.AthenaCommonFlags import jobproperties -jobproperties.AthenaCommonFlags.EvtMax=5 -jobproperties.AthenaCommonFlags.PoolHitsInput = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.HITS.e835_s1310_s1300/HITS.508808._000857.pool.root.1"] -jobproperties.AthenaCommonFlags.PoolRDOOutput="DigitizationOutput.pool.root" - -#-------------------------------------------------------------- -# Digitiziation and Pileup configuration -#-------------------------------------------------------------- -from Digitization.DigitizationFlags import digitizationFlags -digitizationFlags.doLowPtMinBias = True -digitizationFlags.doHighPtMinBias = True -digitizationFlags.doCavern = True -digitizationFlags.doBeamGas = False -digitizationFlags.doBeamHalo = False - -digitizationFlags.bunchSpacing = 25 -digitizationFlags.numberOfCavern = 2 -digitizationFlags.numberOfLowPtMinBias = 2.3 -digitizationFlags.numberOfHighPtMinBias = 0.0002 -digitizationFlags.initialBunchCrossing = -32 #default -digitizationFlags.finalBunchCrossing = 32 #default -digitizationFlags.IOVDbGlobalTag = 'OFLCOND-SDR-BS7T-05-14' -digitizationFlags.overrideMetadata = ['SimLayout', 'PhysicsList'] - -digitizationFlags.LowPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._000382.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001308.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001883.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001944.pool.root.1"] - -digitizationFlags.HighPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._001496.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._002374.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._007836.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._009288.pool.root.1"] - -digitizationFlags.cavernInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001423.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001891.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._002585.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._003578.pool.root.1"] - -#-------------------------------------------------------------- -# Global flags. Like eg the DD version: -#-------------------------------------------------------------- -from AthenaCommon.GlobalFlags import jobproperties -jobproperties.Global.DetDescrVersion = 'ATLAS-GEO-18-01-01' - -#-------------------------------------------------------------------- -# DetFlags. Use to turn on/off individual subdetector or LVL1 trigger -#-------------------------------------------------------------------- -from AthenaCommon.DetFlags import DetFlags -DetFlags.ID_setOff() -DetFlags.Calo_setOff() -DetFlags.Muon_setOn() -DetFlags.Truth_setOn() -DetFlags.LVL1_setOff() - -include( "Digitization/Digitization.py" ) diff --git a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_all.py b/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_all.py deleted file mode 100644 index 22f746a785edc54a3a28076476cf957055121dfc..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/DigiPileUp1E33_all.py +++ /dev/null @@ -1,66 +0,0 @@ -# This is the configuration file to run ATLAS Digitization -# Use the following switches for: -# jobproperties.AthenaCommonFlags.EvtMax = Number of events to digitize (set to -1 for all) -# jobproperties.AthenaCommonFlags.SkipEvents = Number of events from input file collection to skip -# jobproperties.AthenaCommonFlags.PoolHitsInput= Input collections. The list of files with the hits to digitize -# jobproperties.AthenaCommonFlags.PoolRDOOutput= Output file name - -#-------------------------------------------------------------- -# AthenaCommon configuration -#-------------------------------------------------------------- -from AthenaCommon.AthenaCommonFlags import jobproperties -jobproperties.AthenaCommonFlags.EvtMax = 5 -jobproperties.AthenaCommonFlags.PoolHitsInput = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.105200.T1_McAtNlo_Jimmy.merge.HITS.e835_s1310_s1300/HITS.508808._000857.pool.root.1"] -jobproperties.AthenaCommonFlags.PoolRDOOutput = "DigitizationOutput.pool.root" - -#-------------------------------------------------------------- -# Digitiziation and Pileup configuration -#-------------------------------------------------------------- -from Digitization.DigitizationFlags import digitizationFlags -digitizationFlags.doLowPtMinBias = True -digitizationFlags.doHighPtMinBias = True -digitizationFlags.doCavern = True -digitizationFlags.doBeamGas = False -digitizationFlags.doBeamHalo = False - -digitizationFlags.bunchSpacing = 25 -digitizationFlags.numberOfCavern = 2 -digitizationFlags.numberOfLowPtMinBias = 2.3 -digitizationFlags.numberOfHighPtMinBias = 0.0002 -digitizationFlags.initialBunchCrossing = -32 #default -digitizationFlags.finalBunchCrossing = 32 #default -digitizationFlags.IOVDbGlobalTag = 'OFLCOND-SDR-BS7T-05-14' -digitizationFlags.overrideMetadata = ['SimLayout', 'PhysicsList'] - -digitizationFlags.LowPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._000382.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001308.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001883.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1299_s1303/HITS.500617._001944.pool.root.1"] - -digitizationFlags.HighPtMinBiasInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._001496.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._002374.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._007836.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108119.Pythia8_minbias_Inelastic_high.merge.HITS.e848_s1299_s1303/HITS.500616._009288.pool.root.1"] - -digitizationFlags.cavernInputCols = ["root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001423.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._001891.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._002585.pool.root.1", -"root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc11a/mc11_7TeV.108118.Pythia8_minbias_Inelastic_low.merge.HITS.e816_s1268_s1269_s1259/HITS.475989._003578.pool.root.1"] - -#-------------------------------------------------------------- -# Global flags. Like eg the DD version: -#-------------------------------------------------------------- -from AthenaCommon.GlobalFlags import jobproperties -jobproperties.Global.DetDescrVersion = 'ATLAS-GEO-18-01-01' - -#-------------------------------------------------------------------- -# DetFlags. Use to turn on/off individual subdetector or LVL1 trigger -#-------------------------------------------------------------------- -from AthenaCommon.DetFlags import DetFlags -DetFlags.ID_setOn() -DetFlags.Calo_setOn() -DetFlags.Muon_setOn() -DetFlags.Truth_setOn() -DetFlags.LVL1_setOn() - -include( "Digitization/Digitization.py" ) diff --git a/Tools/ValgrindRTTJobs/share/Gaudi.supp b/Tools/ValgrindRTTJobs/share/Gaudi.supp deleted file mode 100644 index dcb31c32ce2750493511a40d0ed32d584831c7bc..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/Gaudi.supp +++ /dev/null @@ -1,551 +0,0 @@ -{ - PersistencySvc factory leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI17EvtPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN72_GLOBAL__N_.._src_PersistencySvc_EvtPersistencySvc.cpp_EF105EC1_4A5556AB7FactoryI17EvtPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - PersistencySvc factory leak - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI23HistogramPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN78_GLOBAL__N_.._src_PersistencySvc_HistogramPersistencySvc.cpp_9D2164D3_20537EF17FactoryI23HistogramPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIP8PropertyE8allocateEjPKv - fun:_ZNSt12_Vector_baseIP8PropertySaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIP8PropertySaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIP8PropertySaIS1_EE9push_backERKS1_ - fun:_ZN11PropertyMgr15declarePropertyIbEEvRKSsRT_S2_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIbEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyIbEE10StatusCodeRKSsRT_S3_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISsEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyISsEE10StatusCodeRKSsRT_S3_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISsE8allocateEjPKv - fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEj - fun:_ZNSt12_Vector_baseISsSaISsEEC2EjRKS0_ - fun:_ZNSt6vectorISsSaISsEEC1ERKS1_ - fun:_ZN15BoundedVerifierISt6vectorISsSaISsEEEC1ERKS3_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10HistorySvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_HistorySvc_HistorySvc.cpp_9D2164D3_852D11FA7FactoryI10HistorySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12EventLoopMgrE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_ApplicationMgr_EventLoopMgr.cpp_9D2164D3_238F8A117FactoryI12EventLoopMgrFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISt6vectorISsSaISsEE15BoundedVerifierIS2_EEC1ES4_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI10MessageSvcEEvMT_FvRS_EPS2_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN5Gaudi7Parsers13PropertyEntryEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN5Gaudi7Parsers13PropertyEntryEESt10_Select1stIS5_ENS3_11_NoCaseCmp_ESaIS5_EE13insert_uniqueERKS5_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10EvtDataSvcE6createERKSsP11ISvcLocator - fun:_ZN58_GLOBAL__N_.._src_DataSvc_EvtDataSvc.cpp_EF105EC1_F55F41E77FactoryI10EvtDataSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI23HistogramPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN78_GLOBAL__N_.._src_PersistencySvc_HistogramPersistencySvc.cpp_9D2164D3_20537EF17FactoryI23HistogramPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_253EDA187FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI7ServiceEEvMT_FvRS_EPS2_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN13JobOptionsSvc20fillServiceCatalogueEv - fun:_ZN13JobOptionsSvc11readOptionsERKSsS1_ - fun:_ZN13JobOptionsSvc10initializeEv - fun:_ZN14ApplicationMgr9i_startupEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI14ApplicationMgrEEvMT_FvRS_EPS2_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP8IServiceEE8allocateEjPKv - fun:_ZNSt10_List_baseIP8IServiceSaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIP8IServiceSaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIP8IServiceSaIS1_EE9_M_insertESt14_List_iteratorIS1_ERKS1_ - fun:_ZNSt4listIP8IServiceSaIS1_EE9push_backERKS1_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI16ProxyProviderSvcE6createERKSsP11ISvcLocator - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C7FactoryI16ProxyProviderSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt6vectorISsSaISsEEEEvRKSsRT_S5_ - fun:_ZNK7Service15declarePropertyISt6vectorISsSaISsEEEE10StatusCodeRKSsRT_S6_ - fun:_ZN10ClassIDSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10ClassIDSvcE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_components_CLIDComps_entries.cxx_9D2164D3_6E09122B7FactoryI10ClassIDSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN11IncidentSvc8ListenerEEE8allocateEjPKv - fun:_ZNSt10_List_baseIN11IncidentSvc8ListenerESaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIN11IncidentSvc8ListenerESaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIN11IncidentSvc8ListenerESaIS1_EE6insertESt14_List_iteratorIS1_ERKS1_ - fun:_ZN11IncidentSvc11addListenerEP17IIncidentListenerRKSslbb -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS6_11_NoCaseCmp_ESaIS2_IS3_S7_EEEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE14_M_create_nodeERKSA_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE9_M_insertEPSt18_Rb_tree_node_baseSI_RKSA_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3mapISsN5Gaudi7Parsers13PropertyEntryENS4_11_NoCaseCmp_ESaIS0_IS1_S5_EEEESt10_Select1stISA_ESt4lessISsESaISA_EE13insert_uniqueESt17_Rb_tree_iteratorISA_ERKSA_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeISt4pairIP8IServiceiEEE8allocateEjPKv - fun:_ZNSt10_List_baseISt4pairIP8IServiceiESaIS3_EE11_M_get_nodeEv - fun:_ZNSt4listISt4pairIP8IServiceiESaIS3_EE14_M_create_nodeERKS3_ - fun:_ZNSt4listISt4pairIP8IServiceiESaIS3_EE6insertESt14_List_iteratorIS3_ERKS3_ - fun:_ZN14ServiceManager10addServiceEP8IServicei -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10ClassIDSvcE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_components_CLIDComps_entries.cxx_9D2164D3_6E09122B7FactoryI10ClassIDSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI17EvtPersistencySvcE6createERKSsP11ISvcLocator - fun:_ZN72_GLOBAL__N_.._src_PersistencySvc_EvtPersistencySvc.cpp_EF105EC1_4A5556AB7FactoryI17EvtPersistencySvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI7ToolSvcE6createERKSsP11ISvcLocator - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F7FactoryI7ToolSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13AlgContextSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_AlgContextSvc_AlgContextSvc.cpp_9D2164D3_0D7C1DBD7FactoryI13AlgContextSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI11IncidentSvcE6createERKSsP11ISvcLocator - fun:_ZN63_GLOBAL__N_.._src_IncidentSvc_IncidentSvc.cpp_9D2164D3_6CD632E57FactoryI11IncidentSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13AppMgrRunableE6createERKSsP11ISvcLocator - fun:_ZN68_GLOBAL__N_.._src_ApplicationMgr_AppMgrRunable.cpp_9D2164D3_266AD5697FactoryI13AppMgrRunableFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIiEEvRKSsRT_S2_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN2SG10StringPoolC1Ev - fun:_ZN12StoreGateSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12StoreGateSvcE6createERKSsP11ISvcLocator - fun:_ZN71_GLOBAL__N_.._src_components_StoreGateSvc_entries.cxx_9D2164D3_6A2FD51A7FactoryI12StoreGateSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIjEEvRKSsRT_S2_ - fun:_ZNK7Service15declarePropertyIjEE10StatusCodeRKSsRT_S3_ - fun:_ZN7DataSvcC2ERKSsP11ISvcLocator - fun:_ZN10EvtDataSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10EvtDataSvcE6createERKSsP11ISvcLocator -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN7DataSvc9i_setRootERKSsP10DataObject - fun:_ZN7DataSvc7setRootERKSsP10DataObject - fun:_ZN12HistogramSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt3mapISsN5Gaudi10Histo1DDefESt4lessISsESaISt4pairIKSsS3_EEEEEvRS7_RT_SB_ - fun:_ZNK7Service15declarePropertyISt3mapISsN5Gaudi10Histo1DDefESt4lessISsESaISt4pairIKSsS3_EEEEE10StatusCodeRS7_RT_SC_ - fun:_ZN12HistogramSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEEvRS5_RT_S9_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI19MinimalEventLoopMgrEEvMT_FvRS_EPS2_ - fun:_ZN19MinimalEventLoopMgrC2ERKSsP11ISvcLocator - fun:_ZN12EventLoopMgrC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12EventLoopMgrE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_ApplicationMgr_EventLoopMgr.cpp_9D2164D3_238F8A117FactoryI12EventLoopMgrFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN11IncidentSvc11addListenerEP17IIncidentListenerRKSslbb - fun:_ZN10ClassIDSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService - fun:_ZN14ServiceManager10getServiceERKSsRP8IServiceb -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPK8PropertyE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPK8PropertySaIS2_EE11_M_allocateEj - fun:_ZNSt12_Vector_baseIPK8PropertySaIS2_EEC2EjRKS3_ - fun:_ZNSt6vectorIPK8PropertySaIS2_EEC1ERKS4_ - fun:_ZNSt4pairIKSsSt6vectorIPK8PropertySaIS4_EEEC1ERKS7_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN19JobOptionsCatalogueC1Ev - fun:_ZN13JobOptionsSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_253EDA187FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIi15BoundedVerifierIiEEC1ES1_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ERKSsS4_S1_ - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN13JobOptionsSvc20fillServiceCatalogueEv - fun:_ZN13JobOptionsSvc11readOptionsERKSsS1_ - fun:_ZN13JobOptionsSvc10initializeEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN12HistogramSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager11makeServiceERKSsRP8IService - fun:_ZN14ServiceManager10getServiceERKSsRP8IServiceb - fun:_ZN11ISvcLocator7serviceI15IDataManagerSvcEE10StatusCodeRKSsRPT_b -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI12HistogramSvcEEvMT_FvRS_EPS2_ - fun:_ZN12HistogramSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI12HistogramSvcE6createERKSsP11ISvcLocator - fun:_ZN65_GLOBAL__N_.._src_HistogramSvc_HistogramSvc.cpp_17E02520_EABF6AE47FactoryI12HistogramSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN19MinimalEventLoopMgr10initializeEv - fun:_ZN12EventLoopMgr10initializeEv - fun:_ZN7Service13sysInitializeEv - fun:_ZN14ServiceManager18initializeServicesEv - fun:_ZN14ApplicationMgr10initializeEv -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ES1_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIb15BoundedVerifierIbEEC1ES1_ - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIj15BoundedVerifierIjEEC1ES1_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_9ECD61837FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvRKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} -{ - - Memcheck:Leak - fun:_Znwj - fun:_ZN16AlgorithmManagerC1EP10IInterface - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE -} - diff --git a/Tools/ValgrindRTTJobs/share/McGenerationPythia.py b/Tools/ValgrindRTTJobs/share/McGenerationPythia.py deleted file mode 100644 index a4e338f1627ed5813705d0d10ba498a8c0d28383..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/McGenerationPythia.py +++ /dev/null @@ -1,68 +0,0 @@ - -# dijet production with pythia -from AthenaCommon.AlgSequence import AlgSequence -topAlg = AlgSequence("TopAlg") - -from Pythia_i.Pythia_iConf import Pythia -topAlg += Pythia() - -Pythia = topAlg.Pythia - -theApp.EvtMax = 50 - -Pythia.PythiaCommand = [ "pysubs msel 0", - "pysubs ckin 3 560.", - "pysubs ckin 4 1120.", - "pysubs msub 11 1", - "pysubs msub 12 1", - "pysubs msub 13 1", - "pysubs msub 68 1", - "pysubs msub 28 1", - "pysubs msub 53 1", - "pypars mstp 82 4", - "pyinit pylisti 12", - "pyinit pylistf 1", - "pystat 1 3 4 5", - "pyinit dumpr 1 5" ] - -# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) -MessageSvc = Service( "MessageSvc" ) -MessageSvc.OutputLevel = 3 - -from TruthExamples.TruthExamplesConf import PrintMC -topAlg += PrintMC() -topAlg.PrintMC.McEventKey = "GEN_EVENT" -topAlg.PrintMC.VerboseOutput = TRUE -topAlg.PrintMC.PrintStyle = "Barcode" -topAlg.PrintMC.FirstEvent = 1 -topAlg.PrintMC.LastEvent = 5 - -# reconstruct some jets -from RecExConfig.RecFlags import rec -rec.doTruth = True - -from JetRec.JetRecFlags import jetFlags -jetFlags.inputFileType = "GEN" - -from JetRec.JetGetters import * -make_StandardJetGetter('Cone',0.7,'Truth') -make_StandardJetGetter('Cone',0.4,'Truth') -make_StandardJetGetter('Kt',0.6,'Truth') -make_StandardJetGetter('Kt',0.4,'Truth') - -make_StandardJetGetter('SISCone',0.7,'Truth') -make_StandardJetGetter('SISCone',0.4,'Truth') -make_StandardJetGetter('AntiKt',0.6,'Truth') -make_StandardJetGetter('AntiKt',0.4,'Truth') - -# helper alg to print PID -from ValgrindRTTJobs.ValgrindRTTJobsConf import ValgrindHelperAlg -topAlg+=ValgrindHelperAlg() - -#--------------------------------------------------------------- -# Pool Persistency -#--------------------------------------------------------------- -from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream("Stream1") -Stream1.ItemList += ["EventInfo#*", "McEventCollection#*" ] -Stream1.OutputFile = "McEvent.root" diff --git a/Tools/ValgrindRTTJobs/share/PostProcessValgrind.py b/Tools/ValgrindRTTJobs/share/PostProcessValgrind.py deleted file mode 100644 index 7c9a369ff3b97271e4b7db4bfb1bf18240931a11..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/PostProcessValgrind.py +++ /dev/null @@ -1,136 +0,0 @@ -#! /usr/bin/env python - -# module: PostProcessValgrind.py - -from Logger import Logger -import os -import subprocess -import glob - -class PostProcessValgrind: - def __init__(self,argDict={}): - - self.logger = Logger() - descriptor = argDict.get('JobDescriptor', None) - - self.RttName = descriptor.name - self.DisName = descriptor.jobDisplayName - - self.NightlyType = descriptor.paths.branch # ==> e.g. dev, devval, 15.4.X.Y, etc. - self.ProjectName = descriptor.paths.topProject # ==> AtlasProduction, AtlasTier0, etc. - # self.cmtConfigStr = descriptor.paths.cmtConfig # ==> e.g. i686-slc4-gcc34-opt - self.PackageTag = descriptor.paths.packageTag # ==> e.g. PackageTag-00-01-20 - self.resPath = descriptor.resPath - - def run(self): - - releaseName = os.environ['AtlasVersion'] - atlasArea = os.environ['AtlasArea'] - cmtConfig = os.environ['CMTCONFIG'] - - fStr = [ '\n', - ' \n', - 'Valgrind Report for ' + self.RttName + ' release ' + releaseName + ' of project ' + self.ProjectName + '\n', - ' \n', - '

Valgrind Report for: ' + self.RttName + '

\n', - '\n', - ' \n', - ' \n', - ' \n', - ' \n' ] - - fStrVetoed = [ '
release ' + releaseName + '
project ' + self.ProjectName + '
AtlasArea points to ' + atlasArea + '
CMTCONFIG ' + cmtConfig + '
\n', '

JOB WAS VETOED !

\n', '\n', '\n' ] - - f = open("Report.html", "w") - f.writelines(fStr) - if os.path.isfile('veto.log'): - f.writelines(fStrVetoed) - f.close() - return -1 - f.close() - - # post processing the valgrind output - self.logger.info("PostProcessValgrind run()") - - runNoTool=True - # did we run memcheck ? - if len(glob.glob("valgrind.out.process.*"))>0: - runNoTool=False - self.logger.info( os.system( 'ls -l processValgrindOutput.sh') ) - - #try: - # r, w = popen2.popen4( 'processValgrindOutput.sh' ) - #except IOError: - # self.logger.info( 'not good. something is wrong' ) - # exit(-1) - - try: - os.environ['VG_RDIR'] = self.resPath - p = subprocess.Popen(["./processValgrindOutput.sh"], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, close_fds=True) - (child_stdout, child_stdin) = (p.stdout, p.stdin) - # subprocess.STDOUT - out = child_stdout.readlines() - for i in out: - self.logger.info( i ) - child_stdout.close() - - except IOError: - self.logger.info( 'not good. something is wrong' ) - return -1 - - if len(glob.glob("callgrind.out.process.*"))>0: - runNoTool=False - # grep -l 'bin/athena.py' valgrind.out.process.* - try: - # r, w = popen2.popen4( 'callgrind_annotate `grep -l "bin/athena.py" callgrind.out.process.*` > callgraph.log' ) - # p = subprocess.Popen(["callgrind_annotate `grep -c -e 'bin/athena.py' -e 'summary: [1-9]' callgrind.out.process.* | grep ':2$' | sed 's/:2$//g'`"], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, close_fds=True) - p = subprocess.Popen(["callgrind_annotate --threshold=90 --inclusive=yes --tree=calling t/callgrind.out.process.*"], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, close_fds=True) - (child_stdout, child_stdin) = (p.stdout, p.stdin) - # subprocess.STDOUT - out = child_stdout.readlines() - - f = open("Report.html", "a") - f.writelines("Top consumers:
\n")
-            for i in out:
-               self.logger.info(i)
-               f.writelines(i)
-            child_stdout.close()
-            f.writelines("
\n") - f.close() - - except IOError: - self.logger.info( 'not good. something is wrong' ) - return -1 - self.logger.info( os.system( 'gzip callgrind.out.process.*') ) - - if len(glob.glob("massif.out.process.*"))>0: - runNoTool=False - # grep -l 'bin/athena.py' valgrind.out.process.* - try: - r, w = popen2.popen4( 'ms_print `grep -l "bin/athena.py" massif.out.process.*` > massif.log' ) - except IOError: - self.logger.info( 'not good. something is wrong' ) - return -1 - self.logger.info( os.system( 'gzip massif.out.process.*') ) - - if runNoTool: - try: - os.environ['VG_RDIR'] = self.resPath - p = subprocess.Popen(["./dhat-postprocess.pl"], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, close_fds=True) - (child_stdout, child_stdin) = (p.stdout, p.stdin) - # subprocess.STDOUT - out = child_stdout.readlines() - for i in out: - self.logger.info( i ) - child_stdout.close() - - except IOError: - self.logger.info( 'not good. something is wrong' ) - return -1 - - # out = r.readlines() - # for i in out: - # self.logger.info( i ) - # r.close() - - return 0 diff --git a/Tools/ValgrindRTTJobs/share/VGHelloWorldOptions.py b/Tools/ValgrindRTTJobs/share/VGHelloWorldOptions.py deleted file mode 100755 index 350a3c361e2e703d7dfd4b301a3b437ec13625c5..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/VGHelloWorldOptions.py +++ /dev/null @@ -1,117 +0,0 @@ -############################################################### -# -# Job options file -# -#============================================================== - -#-------------------------------------------------------------- -# ATLAS default Application Configuration options -#-------------------------------------------------------------- - -# Use McEventSelector so we can run with AthenaMP -import AthenaCommon.AtlasUnixGeneratorJob - -#-------------------------------------------------------------- -# Private Application Configuration options -#-------------------------------------------------------------- - -# Full job is a list of algorithms -from AthenaCommon.AlgSequence import AlgSequence -job = AlgSequence() - -# Add top algorithms to be run -from AthExHelloWorld.AthExHelloWorldConf import HelloAlg -job += HelloAlg( "HelloWorld" ) # 1 alg, named "HelloWorld" - -#-------------------------------------------------------------- -# Set output level threshold (DEBUG, INFO, WARNING, ERROR, FATAL) -#-------------------------------------------------------------- - -# Output level for HelloAlg only (note name: instance, not type) -job.HelloWorld.OutputLevel = INFO - -# You can set the global output level on the message svc (not -# recommended) or by using the -l athena CLI parameter - -#-------------------------------------------------------------- -# Event related parameters -#-------------------------------------------------------------- - -# Number of events to be processed (default is until the end of -# input, or -1, however, since we have no input, a limit needs -# to be set explicitly, here, choose 10) -theApp.EvtMax = 10 - -#-------------------------------------------------------------- -# Algorithms Private Options (all optional) -#-------------------------------------------------------------- - -# For convenience, get a reference to the HelloAlg Algorithm -# named "HelloWorld" in the job -HelloWorld = job.HelloWorld - -# Set an int property -HelloWorld.MyInt = 42 - -# Set a boolean property (False, True, 0, 1) -HelloWorld.MyBool = True - -# Set a double property -HelloWorld.MyDouble = 3.14159 - -# Set a vector of strings property ... -HelloWorld.MyStringVec = [ "Welcome", "to", "Athena", "Framework", "Tutorial" ] - -# ... and add one more: -HelloWorld.MyStringVec += [ "!" ] - -# Set a map of strings to strings property ... -HelloWorld.MyDict = { 'Bonjour' : 'Guten Tag', - 'Good Morning' : 'Bonjour' , 'one' : 'uno' } - -# ... and add one more: -HelloWorld.MyDict[ "Goeiedag" ] = "Ni Hao" - -# Set a table (a vector of pairs of doubles) ... -HelloWorld.MyTable = [ ( 1 , 1 ) , ( 2 , 4 ) , ( 3 , 9 ) ] - -# ... and one more: -HelloWorld.MyTable += [ ( 4, 16 ) ] - -# Set a matrix (a vector of vectors) ... -HelloWorld.MyMatrix = [ [ 1, 2, 3 ], - [ 4, 5, 6 ] ] - -# ... and some more: -HelloWorld.MyMatrix += [ [ 7, 8, 9 ] ] - -#-------------------------------------------------------------- -# Algorithms Tool Usage Private Options (advanced and optional) -#-------------------------------------------------------------- - -# Import configurable for using our HelloTool -from AthExHelloWorld.AthExHelloWorldConf import HelloTool - -# Setup a public tool so that it can be used (again, note name) -ToolSvc += HelloTool( "PublicHello" ) -ToolSvc.PublicHello.MyMessage = "A Public Message!" - -# Tell "HelloWorld" to use this tool ("MyPublicHelloTool" is a -# ToolHandle property of HelloAlg) -HelloWorld.MyPublicHelloTool = ToolSvc.PublicHello - -# Hand "HelloWorld" a private HelloTool ("MyPrivateHelloTool" is -# a ToolHandler property of HelloAlg) -HelloWorld.MyPrivateHelloTool = HelloTool( "HelloTool" ) -HelloWorld.MyPrivateHelloTool.MyMessage = "A Private Message!" - -# helper alg to print PID -from ValgrindRTTJobs.ValgrindRTTJobsConf import ValgrindHelperAlg -job+=ValgrindHelperAlg() - -#============================================================== -# -# End of job options file -# -############################################################### - diff --git a/Tools/ValgrindRTTJobs/share/ValgrindRTTJobs_postJob.C b/Tools/ValgrindRTTJobs/share/ValgrindRTTJobs_postJob.C deleted file mode 100755 index 44688c16f63eb6a014ae81eb076c0d0f28bce755..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/ValgrindRTTJobs_postJob.C +++ /dev/null @@ -1,383 +0,0 @@ - -TFile *f; -TFile *r; - -void plot1D(TString s, - TString hn1, - TString hn2, - TString hn3, - TString hn4, - bool end=false) -{ - TCanvas *dummydet=new TCanvas("dummydet","dummydet",600,400); - TCanvas *canvasdet=new TCanvas("JetRec_RTT_det","JetRec RTT detailed",800,600); - TPad *padd1 = new TPad("pdad1","number of jets",0.03,0.64,0.47,0.92,0); - TPad *padd1b= new TPad("pdd1b","number of jets",0.03,0.49,0.47,0.64,0); - TPad *padd2 = new TPad("pdad2","jet energy ",0.53,0.64,0.93,0.92,0); - TPad *padd2b= new TPad("pdd2b","jet energy ",0.53,0.49,0.93,0.64,0); - TPad *padd3 = new TPad("pdad3","jet eta ",0.03,0.18,0.47,0.46,0); - TPad *padd3b= new TPad("pdd3b","jet eta ",0.03,0.03,0.47,0.18,0); - TPad *padd4 = new TPad("pdad4","jet mass ",0.53,0.18,0.93,0.46,0); - TPad *padd4b= new TPad("pdd4b","jet mass ",0.53,0.03,0.93,0.18,0); - padd1->SetBottomMargin(0.001); - padd1b->SetTopMargin(0.0); - padd2->SetBottomMargin(0.001); - padd2b->SetTopMargin(0.0); - padd3->SetBottomMargin(0.001); - padd3b->SetTopMargin(0.0); - padd4->SetBottomMargin(0.001); - padd4b->SetTopMargin(0.0); - padd1->Draw(); - padd2->Draw(); - padd3->Draw(); - padd4->Draw(); - padd1b->Draw(); - padd2b->Draw(); - padd3b->Draw(); - padd4b->Draw(); - - TPaveLabel *titled = new TPaveLabel(0.1,0.94,0.9,0.98, s); - titled->Draw(); - - if ( ! f->cd(s) ) return; - TH1 *hd1=(TH1*)gDirectory->Get(hn1); - TH1 *hd2=(TH1*)gDirectory->Get(hn2); - TH1 *hd3=(TH1*)gDirectory->Get(hn3); - TH1 *hd4=(TH1*)gDirectory->Get(hn4); - if ( ! r->cd(s) ) return; - TH1 *gd1=(TH1*)gDirectory->Get(hn1); - TH1 *gd2=(TH1*)gDirectory->Get(hn2); - TH1 *gd3=(TH1*)gDirectory->Get(hn3); - TH1 *gd4=(TH1*)gDirectory->Get(hn4); - gd1->SetLineColor(kRed); - gd2->SetLineColor(kRed); - gd3->SetLineColor(kRed); - gd4->SetLineColor(kRed); - - TH1 *sd1 = hd1->Clone(); - TH1 *sd2 = hd2->Clone(); - TH1 *sd3 = hd3->Clone(); - TH1 *sd4 = hd4->Clone(); - TH1 *dd1 = hd1->Clone(); - TH1 *dd2 = hd2->Clone(); - TH1 *dd3 = hd3->Clone(); - TH1 *dd4 = hd4->Clone(); - - sd1->Add(gd1); - sd2->Add(gd2); - sd3->Add(gd3); - sd4->Add(gd4); - dd1->Add(gd1,-1); - dd2->Add(gd2,-1); - dd3->Add(gd3,-1); - dd4->Add(gd4,-1); - dd1->Divide(sd1); - dd2->Divide(sd2); - dd3->Divide(sd3); - dd4->Divide(sd4); - dd1->SetStats(0); - dd2->SetStats(0); - dd3->SetStats(0); - dd4->SetStats(0); - dd1->SetTitle(""); - dd2->SetTitle(""); - dd3->SetTitle(""); - dd4->SetTitle(""); - - hd1->GetXaxis()->SetLabelOffset(3); - hd2->GetXaxis()->SetLabelOffset(3); - hd3->GetXaxis()->SetLabelOffset(3); - hd4->GetXaxis()->SetLabelOffset(3); - - dd1->GetXaxis()->SetLabelSize(0.1); - dd2->GetXaxis()->SetLabelSize(0.1); - dd3->GetXaxis()->SetLabelSize(0.1); - dd4->GetXaxis()->SetLabelSize(0.1); - dd1->GetYaxis()->SetLabelSize(0.1); - dd2->GetYaxis()->SetLabelSize(0.1); - dd3->GetYaxis()->SetLabelSize(0.1); - dd4->GetYaxis()->SetLabelSize(0.1); - - dd1->SetMaximum( 1.2); - dd2->SetMaximum( 1.2); - dd3->SetMaximum( 1.2); - dd4->SetMaximum( 1.2); - dd1->SetMinimum(-1.2); - dd2->SetMinimum(-1.2); - dd3->SetMinimum(-1.2); - dd4->SetMinimum(-1.2); - - padd1->cd(); - if(gd1->GetMaximum()>hd1->GetMaximum()) - { gd1->Draw(); hd1->Draw("same"); } else { hd1->Draw(); gd1->Draw("same"); } - padd2->cd(); - if(gd2->GetMaximum()>hd2->GetMaximum()) - { gd2->Draw(); hd2->Draw("same"); } else { hd2->Draw(); gd2->Draw("same"); } - padd3->cd(); - if(gd3->GetMaximum()>hd3->GetMaximum()) - { gd3->Draw(); hd3->Draw("same"); } else { hd3->Draw(); gd3->Draw("same"); } - padd4->cd(); - if(gd4->GetMaximum()>hd4->GetMaximum()) - { gd4->Draw(); hd4->Draw("same"); } else { hd4->Draw(); gd4->Draw("same"); } - padd1b->cd(); - dd1->Draw(); - padd2b->cd(); - dd2->Draw(); - padd3b->cd(); - dd3->Draw(); - padd4b->cd(); - dd4->Draw(); - - TString ps=s+".ps"; - canvasdet->Update(); - if(end) - ps=s+".ps)"; - canvasdet->Print("JetRec_Detailed_"+ps); -} - -void plot2D(TString s, - TString hn, - bool end=false) -{ - TCanvas *dummydet=new TCanvas("dummydet","dummydet",600,400); - TCanvas *canvasdet=new TCanvas("JetRec_RTT_det","JetRec RTT detailed",800,600); - TPad *padd1 = new TPad("pdad1","number of jets",0.03,0.62,0.93,0.92,0); - TPad *padd2 = new TPad("pdad2","jet energy ",0.03,0.32,0.93,0.62,0); - TPad *padd3 = new TPad("pdad3","jet eta ",0.03,0.02,0.93,0.32,0); - padd1->Draw(); - padd2->Draw(); - padd3->Draw(); - - TPaveLabel *titled = new TPaveLabel(0.1,0.94,0.9,0.98, s); - titled->Draw(); - - if ( ! f->cd(s) ) return; - TH2 *hd=(TH2*)gDirectory->Get(hn); - if ( ! r->cd(s) ) return; - TH2 *gd=(TH2*)gDirectory->Get(hn); - - TH1 *sd = hd->Clone(); - TH1 *dd = hd->Clone(); - - sd->Add(gd); - dd->Add(gd,-1); - dd->Divide(sd); - hd->SetStats(0); - gd->SetStats(0); - dd->SetStats(0); - dd->SetTitle("Difference / Sum"); - - hd->GetXaxis()->SetLabelOffset(3); - dd->GetXaxis()->SetLabelSize(0.1); - dd->SetMaximum( 1.2); - dd->SetMinimum(-1.2); - - padd1->cd(); - hd->Draw("surf"); - padd2->cd(); - gd->Draw("surf"); - padd3->cd(); - dd->Draw("surf"); - - TString ps=s+".ps"; - canvasdet->Update(); - if(end) - ps=s+".ps)"; - canvasdet->Print("JetRec_Detailed_"+ps); -} - -void ValgrindRTTJobs_postJob(TString fstr = "none") -{ - // r=new TFile("/atlas/home/seuster/JetRTT/run/12.5.0_J5/monitor.root"); - r=new TFile(fstr); - f=new TFile("monitor.root"); - - gROOT->SetStyle("Plain"); - - TObjArray *dirs=new TObjArray(50); - TIter next(f->GetListOfKeys()); - TKey *key=(TKey*)next(); - TString s=key->GetClassName(); - - int n0=0; - if(s=="TDirectory") { - TIter next(gDirectory->GetListOfKeys()); - while ((key=(TKey*)next())) { - s=key->GetClassName(); - if(s=="TDirectory") { - s=key->GetName(); - dirs->Add(new TObjString(s)); - n0++; - } - } - }else{ - cout << "NO\n"; - } - dirs->Print(); - TCanvas *dummy=new TCanvas("dummy","dummy",600,400); - - TString ps="("; - - int n1=0; - TIter next2(dirs); - TObjString *str; - while (str=(TObjString *)next2()) { - - TCanvas *canvas=new TCanvas("JetRec_RTT","JetRec RTT",800,600); - TPad *pad1 = new TPad("pad1","number of jets",0.03,0.64,0.47,0.92,0); - TPad *pad1b= new TPad("pd1b","number of jets",0.03,0.49,0.47,0.64,0); - TPad *pad2 = new TPad("pad2","jet energy ",0.53,0.64,0.93,0.92,0); - TPad *pad2b= new TPad("pd2b","jet energy ",0.53,0.49,0.93,0.64,0); - TPad *pad3 = new TPad("pad3","jet eta ",0.03,0.18,0.47,0.46,0); - TPad *pad3b= new TPad("pd3b","jet eta ",0.03,0.03,0.47,0.18,0); - TPad *pad4 = new TPad("pad4","jet mass ",0.53,0.18,0.93,0.46,0); - TPad *pad4b= new TPad("pd4b","jet mass ",0.53,0.03,0.93,0.18,0); - pad1->SetBottomMargin(0.001); - pad1b->SetTopMargin(0.0); - pad2->SetBottomMargin(0.001); - pad2b->SetTopMargin(0.0); - pad3->SetBottomMargin(0.001); - pad3b->SetTopMargin(0.0); - pad4->SetBottomMargin(0.001); - pad4b->SetTopMargin(0.0); - pad1->Draw(); - pad2->Draw(); - pad3->Draw(); - pad4->Draw(); - pad1b->Draw(); - pad2b->Draw(); - pad3b->Draw(); - pad4b->Draw(); - - TString s = str->GetName(); - std::cout << s << "\n"; - - TPaveLabel *title = new TPaveLabel(0.1,0.94,0.9,0.98, s); - title->Draw(); - - if ( ! f->cd(str->GetName()) ) continue; - TH1D *h1=(TH1D*)gDirectory->Get("NoJets"); - TH1D *h2=(TH1D*)gDirectory->Get("JetE"); - TH1D *h3=(TH1D*)gDirectory->Get("JetEta"); - TH1D *h4=(TH1D*)gDirectory->Get("JetMass"); - if ( ! r->cd(str->GetName()) ) continue; - TH1D *g1=(TH1D*)gDirectory->Get("NoJets"); - TH1D *g2=(TH1D*)gDirectory->Get("JetE"); - TH1D *g3=(TH1D*)gDirectory->Get("JetEta"); - TH1D *g4=(TH1D*)gDirectory->Get("JetMass"); - g1->SetLineColor(kRed); - g2->SetLineColor(kRed); - g3->SetLineColor(kRed); - g4->SetLineColor(kRed); - - TH1D *s1=h1->Clone(); - TH1D *s2=h2->Clone(); - TH1D *s3=h3->Clone(); - TH1D *s4=h4->Clone(); - TH1D *d1=h1->Clone(); - TH1D *d2=h2->Clone(); - TH1D *d3=h3->Clone(); - TH1D *d4=h4->Clone(); - s1->Add(g1); - s2->Add(g2); - s3->Add(g3); - s4->Add(g4); - d1->Add(g1,-1); - d2->Add(g2,-1); - d3->Add(g3,-1); - d4->Add(g4,-1); - d1->Divide(s1); - d2->Divide(s2); - d3->Divide(s3); - d4->Divide(s4); - d1->SetStats(0); - d2->SetStats(0); - d3->SetStats(0); - d4->SetStats(0); - d1->SetTitle(""); - d2->SetTitle(""); - d3->SetTitle(""); - d4->SetTitle(""); - - h1->GetXaxis()->SetLabelOffset(3); - h2->GetXaxis()->SetLabelOffset(3); - h3->GetXaxis()->SetLabelOffset(3); - h4->GetXaxis()->SetLabelOffset(3); - - d1->GetXaxis()->SetLabelSize(0.1); - d2->GetXaxis()->SetLabelSize(0.1); - d3->GetXaxis()->SetLabelSize(0.1); - d4->GetXaxis()->SetLabelSize(0.1); - d1->GetYaxis()->SetLabelSize(0.1); - d2->GetYaxis()->SetLabelSize(0.1); - d3->GetYaxis()->SetLabelSize(0.1); - d4->GetYaxis()->SetLabelSize(0.1); - - d1->SetMaximum( 1.2); - d2->SetMaximum( 1.2); - d3->SetMaximum( 1.2); - d4->SetMaximum( 1.2); - d1->SetMinimum(-1.2); - d2->SetMinimum(-1.2); - d3->SetMinimum(-1.2); - d4->SetMinimum(-1.2); - - pad1->cd(); - if(g1->GetMaximum()>h1->GetMaximum()) - { g1->Draw(); h1->Draw("same"); } else { h1->Draw(); g1->Draw("same"); } - pad2->cd(); - if(g2->GetMaximum()>h2->GetMaximum()) - { g2->Draw(); h2->Draw("same"); } else { h2->Draw(); g2->Draw("same"); } - pad3->cd(); - if(g3->GetMaximum()>h3->GetMaximum()) - { g3->Draw(); h3->Draw("same"); } else { h3->Draw(); g3->Draw("same"); } - pad4->cd(); - if(g4->GetMaximum()>h4->GetMaximum()) - { g4->Draw(); h4->Draw("same"); } else { h4->Draw(); g4->Draw("same"); } - pad1b->cd(); - d1->Draw(); - pad2b->cd(); - d2->Draw(); - pad3b->cd(); - d3->Draw(); - pad4b->cd(); - d4->Draw(); - dummy->cd(); - - n1++; - if(n0==n1) ps=")"; - - canvas->Update(); - canvas->Print("JetRec_RTT.ps"+ps); - ps=""; - - bool ok = (d1->GetSum()==0) && ( h1->GetSum() > 0 ); - - ok=false; - // make detailed plots if differences found - if( ! ok ) - { - canvas->Print("JetRec_Detailed_"+s+".ps("); - - plot1D(s, "JetE", "JetP", "JetPt", "JetPhi"); - plot1D(s, "JetDeltaR", "JetDeltaPhi", "JetDeltaEta", "JetDeltaCos"); - - plot1D(s, "AveJetEvsEta", "AveJetEtvsEta", "AveJetPtvsEta", "AveJetMvsEta"); - plot1D(s, "AveJetEvsPhi", "AveJetEtvsPhi", "AveJetPtvsPhi", "AveJetMvsPhi"); - plot1D(s, "JetNormProf", "JetIntgProf", "AveJetPvsEta", "AveJetPvsPhi"); - - plot2D(s, "JetEvsEta"); - plot2D(s, "JetPvsEta"); - plot2D(s, "JetEtvsEta"); - plot2D(s, "JetPtvsEta"); - plot2D(s, "JetMvsEta"); - - plot2D(s, "AveJetEinEtaPhi"); - plot2D(s, "AveJetPinEtaPhi"); - plot2D(s, "AveJetEtinEtaPhi"); - plot2D(s, "AveJetPtinEtaPhi"); - plot2D(s, "AveJetMinEtaPhi", true); - - } - } -} diff --git a/Tools/ValgrindRTTJobs/share/cgOpts.py b/Tools/ValgrindRTTJobs/share/cgOpts.py deleted file mode 100644 index 3716b49bae0987dceed10dcb26e2f7f466dcffc9..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cgOpts.py +++ /dev/null @@ -1,3 +0,0 @@ -from Valkyrie.JobOptCfg import ValgrindSvc -from AthenaCommon.AppMgr import ServiceMgr as svcMgr -svcMgr+=ValgrindSvc(OutputLevel=DEBUG,ProfiledAlgs=[],IgnoreFirstNEvents=1) diff --git a/Tools/ValgrindRTTJobs/share/cosmics_CALOonly.py b/Tools/ValgrindRTTJobs/share/cosmics_CALOonly.py deleted file mode 100644 index 6cb1ade129bbb9aa62f5b663f7c93ed49bb364b8..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_CALOonly.py +++ /dev/null @@ -1,42 +0,0 @@ -# Run arguments file auto-generated on Tue Jun 16 00:11:03 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -runArgs.outputESDFile = 'myESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=True', 'rec.doInDet=False', 'rec.doMuon=False', 'rec.doJetMissingETTag=False', 'rec.doEgamma=False', 'rec.doMuonCombined=False', 'rec.doTau=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include ("RecJobTransforms/skeleton.RAWtoESD.py") - diff --git a/Tools/ValgrindRTTJobs/share/cosmics_IDonly.py b/Tools/ValgrindRTTJobs/share/cosmics_IDonly.py deleted file mode 100644 index 21c44506fa76e72bab707f9a126e38f19ab39042..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_IDonly.py +++ /dev/null @@ -1,41 +0,0 @@ -# Run arguments file auto-generated on Sun Jun 14 13:14:41 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -# runArgs.outputESDFile = 'ESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=False', 'rec.doInDet=True', 'rec.doMuon=False', 'rec.doJetMissingETTag=False', 'rec.doEgamma=False', 'rec.doMuonCombined=False', 'rec.doTau=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include("RecJobTransforms/skeleton.RAWtoESD.py") diff --git a/Tools/ValgrindRTTJobs/share/cosmics_MUONonly.py b/Tools/ValgrindRTTJobs/share/cosmics_MUONonly.py deleted file mode 100644 index 38e1c6d9499a729efb5f0d6a3b8e3149dd5fda10..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_MUONonly.py +++ /dev/null @@ -1,42 +0,0 @@ -# Run arguments file auto-generated on Tue Jun 16 00:13:43 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -runArgs.outputESDFile = 'myESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=False', 'rec.doInDet=False', 'rec.doMuon=True', 'rec.doJetMissingETTag=False', 'rec.doEgamma=False', 'rec.doMuonCombined=False', 'rec.doTau=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include ("RecJobTransforms/skeleton.RAWtoESD.py") - diff --git a/Tools/ValgrindRTTJobs/share/cosmics_all.py b/Tools/ValgrindRTTJobs/share/cosmics_all.py deleted file mode 100644 index a85d67f43754045e8dc07284a9d7bb9711a32a4b..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_all.py +++ /dev/null @@ -1,41 +0,0 @@ -# Run arguments file auto-generated on Tue Jun 16 00:11:03 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -runArgs.outputESDFile = 'myESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doTrigger=False', 'rec.doPerfMon=False', 'rec.doWriteESD.unlock()', 'rec.doWriteESD.set_Value_and_Lock(False)', 'rec.doWriteESD.lock()', 'rec.doEdmMonitor.set_Value_and_Lock(False)' , 'rec.doJetMissingETTag=False' ] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include ("RecJobTransforms/skeleton.RAWtoESD.py") - diff --git a/Tools/ValgrindRTTJobs/share/cosmics_noCALO.py b/Tools/ValgrindRTTJobs/share/cosmics_noCALO.py deleted file mode 100644 index be63829b66de483fdc9b6b648e35ec5c07b0e29f..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_noCALO.py +++ /dev/null @@ -1,42 +0,0 @@ -# Run arguments file auto-generated on Tue Jun 16 00:11:03 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -runArgs.outputESDFile = 'myESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=False', 'rec.doInDet=True', 'rec.doMuon=True', 'rec.doEgamma=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include ("RecJobTransforms/skeleton.RAWtoESD.py") - diff --git a/Tools/ValgrindRTTJobs/share/cosmics_noID.py b/Tools/ValgrindRTTJobs/share/cosmics_noID.py deleted file mode 100644 index 95410280376af4c30912b558cca161b4d76e84ed..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_noID.py +++ /dev/null @@ -1,41 +0,0 @@ -# Run arguments file auto-generated on Sun Jun 14 13:14:41 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -# runArgs.outputESDFile = 'ESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=True', 'rec.doInDet=False', 'rec.doMuon=True', 'rec.doJetMissingETTag=False', 'rec.doMuonCombined=False', 'rec.doTau=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include("RecJobTransforms/skeleton.RAWtoESD.py") diff --git a/Tools/ValgrindRTTJobs/share/cosmics_noMUON.py b/Tools/ValgrindRTTJobs/share/cosmics_noMUON.py deleted file mode 100644 index 842bd19b5dcb26091b6d9af224062a7e73f76fef..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/cosmics_noMUON.py +++ /dev/null @@ -1,42 +0,0 @@ -# Run arguments file auto-generated on Tue Jun 16 00:13:43 2009 by: -# JobTransform: RAWtoESD -# Version: RecJobTransforms-00-08-26 - -# Authors: David Cote - -################################################################################# -from PyJobTransformsCore.runargs import RunArguments - -runArgs = RunArguments() - - -# Input file that contains BSs -runArgs.inputBSFile = ['/afs/cern.ch/user/g/gencomm/w0/RTT_INPUT_DATA/CosmicATN/daq.ATLAS.0091900.physics.IDCosmic.LB0001.SFO-1._0001.10EVTS.data'] - -# Basic string -runArgs.trigStream = 'IDCosmic' - -# List of strings separated by commas -runArgs.autoConfiguration = ['FieldAndGeo', 'BeamType', 'ConditionsTag'] - -# Maximum number of events to process -runArgs.maxEvents = 2 - -# List of strings separated by commas -runArgs.preInclude = ['RecExCommission/MinimalCommissioningSetup.py'] - -# List of strings separated by commas -runArgs.postInclude = ['RecJobTransforms/reducedRegionSelectorPostConfig.py', 'RecExCommission/RecExCommission_RemoveTRTBSErr.py'] - -# Output file that contains ESD's -runArgs.outputESDFile = 'myESD.pool.root' - -# Transfrom a string into generic multi-line python fragment where each line is an element in a list. -runArgs.preExec = ['rec.doCalo=True', 'rec.doInDet=True', 'rec.doMuon=False', 'rec.doTrigger=False', 'rec.doPerfMon=False'] - -runArgs.postExec = ['aas.TimeOut=0*Units.s'] -# -runArgs.loglevel = 'INFO' - -include ("RecJobTransforms/skeleton.RAWtoESD.py") - diff --git a/Tools/ValgrindRTTJobs/share/dhat-postprocess.pl b/Tools/ValgrindRTTJobs/share/dhat-postprocess.pl deleted file mode 100755 index f3d7ac45a187efbaf0c8f389d11061fe733ab5ab..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/dhat-postprocess.pl +++ /dev/null @@ -1,839 +0,0 @@ -#!/usr/bin/perl - -# # #!/usr/bin/env perl - -use strict; - -use Storable; -use Digest::MD5 qw(md5_hex); -use FileHandle; - -# use GD::Graph::histogram; - -my $logfile="out.valgrind.log.gz"; -my $dirname="."; - -my %counters = (); -my %releases = (); - -sub constructSVNLink -{ - my ($base, $relr, $project, $reln, $packpath, $package, $platform) = @_; - # print "ROLF e : $base, $relr, $project, $reln, $packpath, $package, $platform\n"; - if ( ! exists($releases{$project}) ) - { - open(RFILE, "< $base/$relr/$project/$reln/$project" . "Release/cmt/requirements" ); - my @rcontent = ; - close(RFILE); - - foreach my $line (@rcontent) - { - if ( $line =~ m/^use /i ) - { - my ($rpackage,$rpacktag,$rpackpath) = ( $line =~ /^use\s+(\S+)\s+(\S+)\s+(\S+)/ ); - $rpackpath =~ s/\s+$//; - $rpackage =~ s/\s+$//; - $rpacktag =~ s/\s+$//; - $releases{$project}{$rpackpath . "/" . $rpackage} = $rpacktag; - } - } - } - my $string=""; - $string="https://svnweb.cern.ch/trac/atlasoff/browser/$packpath/$package/tags/" . $releases{$project}{$packpath . "/" . $package} if ( $releases{$project}{$packpath . "/" . $package} ne "" ); - return $string; -} - -sub open_html -{ - my ($file,$name) = @_; - $file->open("> " . $name); - $counters{'HTMLName'}{$file} = $name; -} - -sub prepare_html_report -{ - my ($file, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $cr, $info) = @_; - my $now = time(); - - print $file "\n"; - print $file "\n"; - print $file "Valgrind DHat Report:\n\n\n"; - print $file "
\n

Valgrind new dynamic allocation analysis tool:

\n

\n"; - print $file "\n\n\n"; - - print $file "reports:<\/br>"; - print $file "
\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "\n"; - print $file "
<\/td>No Access<\/a> $c1 <\/td>"; - print $file "allocated memory never accessed<\/td>
or<\/td>No Read<\/a> $c2 <\/td>\n"; - print $file "allocated memory written to but never read from<\/td>
or<\/td>No Write<\/a> $c3 <\/td>\n"; - print $file "allocated memory never written to<\/td>
or<\/td>No Free<\/a> $c4 <\/td>\n"; - print $file "not freed memory<\/td>
or<\/td>Low Read<\/a> $c5 <\/td>\n"; - print $file "low reads from allocated memory<\/td>
or<\/td>Low Write<\/a> $c6 <\/td>\n"; - print $file "low writes to allocated memory<\/td>
or<\/td>More Write than Read<\/a> $c7 <\/td>\n"; - print $file "more writes than reads<\/td>
or<\/td>Long Lifetime<\/a> $c8 <\/td>\n"; - print $file "memory with long lifetime<\/td>
or<\/td>Rest<\/a> $cr <\/td>\n"; - print $file "remaining reports<\/td>
\n\n"; - print $file "NOTE: any report will show up only once, in topmost category.\n\n"; - print $file "
\n$info\n
\n\n"; - print $file "\n\n" -} - -sub prepare_html_jobinfo -{ - my ($file, $info) = @_; - my $now = time(); - - print $file "\n"; - print $file "\n"; - print $file "Valgrind DHat JobInfo:\n\n\n"; - print $file "
\n

Valgrind new dynamic allocation analysis tool:

\n

\n"; - print $file "\n\n\n"; - - print $file "
\n$info\n
\n\n"; - - print $file "\n"; - print $file "\n"; - print $file "\n\n"; - print $file "\n\n" -} - -sub prepare_html2 -{ - my ($file, $fname) = @_; - my $string=""; - my $now = time(); - - $string = $string . "\n"; - $string = $string . "\n"; - $string = $string . "Valgrind DHat Report: $fname\n\n\n"; - $string = $string . "
\n

Valgrind reported as $fname:

\n
\n

\n"; - $string = $string . "

\n\n\n"; - $string = $string . "Back to main\n\n"; - - $string = $string . "\n\n"; - print $file2 "
running number\n in function\n in library\n"; - print $file $string; -} - -sub prepare_html -{ - my ($file, $fname, $name) = @_; - my $string=""; - my $now = time(); - - $string = $string . "\n"; - $string = $string . "\n"; - $string = $string . "\n"; - $string = $string . "\n\n"; - $string = $string . "Valgrind DHat Report of " . $fname . "\n"; - $string = $string . "\n\n"; - $string = $string . "\n"; - - $counters{'Counter'}{$file} = 0; - $counters{'FileName'}{$file} = $fname; - $counters{'HTMLName'}{$file} = $name; - - print $file $string; -} - -sub finish_html -{ - my ($file) = @_; - print $file ""; -} - -sub print_html -{ - my ($file, $file2, $string, $pid) = @_; - - $string =~ s//\>/g; - - my @glines = grep { s/^==$pid== by 0x.+: (.+) \((.+)\)$/\1\[\2\]/g } split '\n', $string; - my $function = ""; - my $library = ""; - foreach my $s ( reverse( @glines ) ) - { - $function = $s if ( ( ! ( $s =~ /^std::/ ) ) and ( $s ne "???") ); - } - - ($function,$library) = ( $function =~ /^(.+)\[(.+)\]/ ); - $library =~ s/^in //g; - print $file2 "
$counters{'Counter'}{$file}\n"; - print $file2 ""; - print $file2 "$function"; - print $file2 "$library\n"; - - print $file "

"; - print $file "$counters{'FileName'}{$file} $counters{'Counter'}{$file} in function \"$function\"

\n"; - print $file "
";
-    @glines = split '\n', $string;
-    foreach my $s ( @glines )
-    {
-	$function = $s if ( ( ! ( $s =~ /^std::/ ) ) and ( $s ne "???") );
-	my ($function2,$library2) = ( $function =~ /^(.+)\((.+)\)/ );
-	$library2 =~ s/^in //g;
-	
-	if ( $s =~ m"/afs/cern.ch/atlas/software/builds/nightlies/" )
-	{
-	    my $base;
-	    my $relr;
-	    my $project;
-	    my $reln;
-	    my $packpath;
-	    my $package;
-	    my $platform;
-	    my $last;
-	    ($base,$relr,$project,$reln,$packpath,$package,$platform,$last) = ( $library2 =~ m"(/afs/cern.ch/atlas/software/builds/nightlies)/(.+)/(.+)/(rel_.)/(.+)/(.+)/(.+)/lib(.+)\.so" );
-	    
-	    my $svn = "";
-	    $svn = constructSVNLink($base, $relr, $project, $reln, $packpath, $package, $platform) if ( $base ne "" );
-	    
-	    if ( $svn ne "" )
-	    {
-		$library2="[SVN] ";
-	    }
-	    else
-	    {
-		$library2="";
-	    }
-	}
-	else
-	{
-	    $library2="";
-	}
-	$s =~ s/^(==$pid==    by 0x.+: .+) \((.+)\)$/\1 $library2\(\2\)/g;
-	print $file $s . "\n";
-    }
-    
-    print $file "
\n"; - - $counters{'Counter'}{$file}++; -} - -print "DHAT postprocess >> $logfile \n"; - -open(FILE, "gunzip -c $dirname/$logfile | " ); -my @content = ; -close(FILE); - -my $init=0; -my $total_instructions=0; -my $max_live=0; -my $max_live_blocks=0; -my $tot_alloc=0; -my $tot_alloc_blocks=0; -my $report_max_live=0; -my $report_max_live_blocks=0; -my $report_tot_alloc=0; -my $report_tot_alloc_blocks=0; -my $report_dealloc=0; -my $report_dealloc_age=0; -my $report_acc_ratio_r=0; -my $report_acc_ratio_w=0; -my $report_acc_total_r=0; -my $report_acc_total_w=0; -my $top_allocs=0; -my $ordering=""; -my %Summary=(); -my @reports=(); -my $nreport0=0; -my $nreport1=0; -my $fullline=""; -my $pid="4230"; - -($pid) = ( $content[0] =~ /^==([0-9]+)== DHAT, a dynamic heap analysis tool/ ); -print "got = $pid from line zero:" . $content[0] . ":\n"; - -open(FILE, "cat $dirname/top.log | " ); -my @memcontent = ; -close(FILE); - -my @memorylines = grep { s/^\s*$pid\s+\w+\s+\d+\s+\d+\s+([\w\.]+)\s+([\w\.]+)\s+[\w\.]+\s+\S+\s+([\w\.]+)\s+[\w\.]+\s+([\w\.:]+).+/\1 \2 \3 \4/g } @memcontent; - -print "found " . scalar @memorylines . " lines for memory monitoring\n"; - -foreach my $line (@content) -{ - if ( $line =~ m/^==$pid== ======== SUMMARY STATISTICS ========/i ) - { - $init=1; - $fullline = ""; - } - - if ( $line =~ m/^==$pid== ======== ORDERED BY decreasing .+ allocators ========/i ) - { - ($ordering,$top_allocs) = ( $line =~ /^==$pid== ======== ORDERED BY decreasing "(.+)": top (.+) allocators ========/ ); - $init=2; - } - - if ( $init == 1 ) - { - if ( $line =~ m/^==$pid== guest_insns: /i ) - { - ($total_instructions) = ( $line =~ /^==$pid== guest_insns:\s+(.+)/ ); - $total_instructions =~ s/,//g; - } - if ( $line =~ m/^==$pid== max_live: /i ) - { - ($max_live,$max_live_blocks) = ( $line =~ /^==$pid== max_live:\s+(.+) in\s+(.+) blocks/ ); - $max_live =~ s/,//g; - $max_live_blocks =~ s/,//g; - } - if ( $line =~ m/^==$pid== tot_alloc: /i ) - { - ($tot_alloc,$tot_alloc_blocks) = ( $line =~ /^==$pid== tot_alloc:\s+(.+) in\s+(.+) blocks/ ); - $tot_alloc =~ s/,//g; - $tot_alloc_blocks =~ s/,//g; - } -#==4230== guest_insns: 122,798,380,987 -#==4230== -#==4230== max_live: 255,458,117 in 6,435,493 blocks -#==4230== -#==4230== tot_alloc: 2,668,402,686 in 63,814,946 blocks -#==4230== -#==4230== insns per allocated byte: 46 -#==4230== -#==4230== -#==4230== ======== ORDERED BY decreasing "max-bytes-live": top 25000 allocators ======== - } - if ( $line =~ m/^==$pid== -------------------- .+ of $top_allocs --------------------/i ) - { - push @{ reports }, { String=>$fullline, - Class=>0, - MaxLive=>$report_max_live, - MaxLiveBlocks=>$report_max_live_blocks, - TotalAlloc=>$report_tot_alloc, - TotalAllocBlocks=>$report_tot_alloc_blocks, - Dealloc=>$report_dealloc, - DeallocAge=>$report_dealloc_age, - AccRatioR=>$report_acc_ratio_r, - AccRatioW=>$report_acc_ratio_w, - AccTotalR=>$report_acc_total_r, - AccTotalW=>$report_acc_total_w, - Reported=>0 - }; - if ( ! exists($Summary{'Reports'}) ) - { - $Summary{'Reports'} = [ { String=>$fullline, - Class=>0, - MaxLive=>$report_max_live, - MaxLiveBlocks=>$report_max_live_blocks, - TotalAlloc=>$report_tot_alloc, - TotalAllocBlocks=>$report_tot_alloc_blocks, - Dealloc=>$report_dealloc, - DeallocAge=>$report_dealloc_age, - AccRatioR=>$report_acc_ratio_r, - AccRatioW=>$report_acc_ratio_w, - AccTotalR=>$report_acc_total_r, - AccTotalW=>$report_acc_total_w, - Reported=>-1 - } ]; - } - else - { - push @{ $Summary{'Reports'} }, { String=>$fullline, - Class=>0, - MaxLive=>$report_max_live, - MaxLiveBlocks=>$report_max_live_blocks, - TotalAlloc=>$report_tot_alloc, - TotalAllocBlocks=>$report_tot_alloc_blocks, - Dealloc=>$report_dealloc, - DeallocAge=>$report_dealloc_age, - AccRatioR=>$report_acc_ratio_r, - AccRatioW=>$report_acc_ratio_w, - AccTotalR=>$report_acc_total_r, - AccTotalW=>$report_acc_total_w, - Reported=>0 - }; - } - - ($nreport0) = ( $line =~ /^==$pid== -------------------- (.+) of $top_allocs --------------------/ ); - $nreport1++; - $fullline = ""; - } - if ( $init > 0 ) - { - if ( $line =~ m/^==$pid==/i ) - { - $fullline = $fullline . $line if ( $line =~ m/^==$pid== ./i ); - } - if ( $line =~ m/^==$pid== ==============================================================/i ) - { - push @{ reports }, { String=>$fullline, - Class=>0, - MaxLive=>$report_max_live, - MaxLiveBlocks=>$report_max_live_blocks, - TotalAlloc=>$report_tot_alloc, - TotalAllocBlocks=>$report_tot_alloc_blocks, - Dealloc=>$report_dealloc, - DeallocAge=>$report_dealloc_age, - AccRatioR=>$report_acc_ratio_r, - AccRatioW=>$report_acc_ratio_w, - AccTotalR=>$report_acc_total_r, - AccTotalW=>$report_acc_total_w, - Reported=>0 - }; - push @{ $Summary{'Reports'} }, { String=>$fullline, - Class=>0, - MaxLive=>$report_max_live, - MaxLiveBlocks=>$report_max_live_blocks, - TotalAlloc=>$report_tot_alloc, - TotalAllocBlocks=>$report_tot_alloc_blocks, - Dealloc=>$report_dealloc, - DeallocAge=>$report_dealloc_age, - AccRatioR=>$report_acc_ratio_r, - AccRatioW=>$report_acc_ratio_w, - AccTotalR=>$report_acc_total_r, - AccTotalW=>$report_acc_total_w, - Reported=>0 - }; - $init = -1; - } - if ( $init > 1 ) - { -#==4230== max-live: 256 in 1 blocks -#==4230== tot-alloc: 256 in 1 blocks (avg size 256.00) -#==4230== deaths: 1, at avg age 105,272,295,842 -#==4230== acc-ratios: 10.29 rd, 2.50 wr (2,636 b-read, 641 b-written) - if ( $line =~ m/^==$pid== max-live: /i ) - { - # print "ROLF :: $line"; - ($report_max_live,$report_max_live_blocks) = ( $line =~ /^==$pid== max-live:\s+(.+) in\s+(.+) blocks/ ); - $report_max_live =~ s/,//g; - $report_max_live_blocks =~ s/,//g; - } - if ( $line =~ m/^==$pid== tot-alloc: /i ) - { - ($report_tot_alloc,$report_tot_alloc_blocks) = ( $line =~ /^==$pid== tot-alloc:\s+(.+) in\s+(.+) blocks/ ); - $report_tot_alloc =~ s/,//g; - $report_tot_alloc_blocks =~ s/,//g; - } - if ( $line =~ m/^==$pid== deaths: /i ) - { - ($report_dealloc,$report_dealloc_age) = ( $line =~ /^==$pid== deaths:\s+(.+), at avg age (.+)/ ); - $report_dealloc =~ s/,//g; - $report_dealloc_age =~ s/,//g; - - if ( $line =~ m/^==$pid== deaths: none \(none of these blocks were freed\)/i ) - { - $report_dealloc = "never"; - $report_dealloc_age = "never"; - } - else - { - $fullline =~ s/\s+$//; - $fullline = $fullline . " (" . sprintf("%.1f", 100 * $report_dealloc_age / $total_instructions ) . " per cent of total instr.)\n"; - } - } - if ( $line =~ m/^==$pid== acc-ratios: /i ) - { - ($report_acc_ratio_r, - $report_acc_ratio_w, - $report_acc_total_r, - $report_acc_total_w) = ( $line =~ /^==$pid== acc-ratios:\s+(.+) rd,\s+(.+) wr\s+\((.+) b-read, (.+) b-written\)/ ); - $report_acc_total_r =~ s/,//g; - $report_acc_total_w =~ s/,//g; - } - } - } -} - -print "total instructions : $total_instructions\n"; -print "maximal live : $max_live in $max_live_blocks blocks\n"; -print "total allocations : $tot_alloc in $tot_alloc_blocks blocks\n"; -print "ordering by : $ordering\n"; -print "print n allocators : $top_allocs\n"; - -print "no of reports: " . $nreport1 . "\n"; -print "Summary:\n"; -print $reports[0]{'String'} . "\n"; -print "REPORT number 1:\n"; -print $reports[1]{'String'} . "\n"; -print "last REPORT:\n"; -print ">\n$fullline<\n"; - -print "got these numbers from it:\n"; -print "max-live (in n blocks) : $report_max_live ($report_max_live_blocks)\n"; -print "tot-alloc (in n blocks) : $report_tot_alloc ($report_tot_alloc_blocks)\n"; -print "dealloc (when) : $report_dealloc ($report_dealloc_age)\n"; -print "acc-ratios : $report_acc_ratio_r $report_acc_ratio_w $report_acc_total_r $report_acc_total_w\n"; - -# my $hashFile="DHAT.db"; -# store \%Summary, $hashFile; - -# -#plot [-6:6] sin(x) -#gnuplot> set terminal postscript -#Terminal type set to 'postscript' -#Options are 'landscape monochrome "Courier" 14' -#gnuplot> set output "sin.ps" -#gnuplot> replot - -my $x=3.2; -my $y=3.2; -my $t=3.2; -my $l10=log(10); - -print "creating plots\n"; -# open (PIPE, "|/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00a/i686-slc5-gcc34-opt/root/bin/root -l -b - > log 2>&1") or die "no root"; -# open (PIPE, "|/atlas/Software/root/bin/root -l -b - > log 2>&1") or die "no root"; -open (PIPE, "|root -l -b - > log 2>&1") or die "no root"; -# open (PIPE, ">log") or die "no root"; -## force buffer to flush after each write -use FileHandle; -PIPE->autoflush(1); -print PIPE "TCanvas can(\"c1\",\"c1\",1200,800);\n"; -print PIPE "TH2D h1(\"h1\",\"h1\",180,-2.5,6.5,180,-2.5,6.5);\n"; -print PIPE "TH1D h2(\"h2\",\"h2\",100,-10.0,0.0);\n"; -print PIPE "TH1D m1(\"m1\",\"m1\"," . scalar @memorylines . ",0.0," . scalar @memorylines . ".0);\n"; -print PIPE "TH1D m2(\"m2\",\"m2\"," . scalar @memorylines . ",0.0," . scalar @memorylines . ".0);\n"; -print PIPE "TH1D m3(\"m3\",\"m3\"," . scalar @memorylines . ",0.0," . scalar @memorylines . ".0);\n"; -print PIPE "TH1D m4(\"m4\",\"m4\"," . scalar @memorylines . ",0.0," . scalar @memorylines . ".0);\n"; -print PIPE "h1.SetStats(0);\n"; -print PIPE "h2.SetStats(0);\n"; -print PIPE "h1.SetTitle(\"read vs write ratios;log_{10}(R_{read});log_{10}(R_{write})\");\n"; -print PIPE "h2.SetTitle(\"average lifetime of allocations;log_{10}(rel. lifetime)\");\n"; -for my $index ( 0 .. $#{ $Summary{'Reports'} } ) -# for my $index ( 0 .. 3000 ) -{ - print " " . $index . "\n" if $index % 1000 == 0; - $x = -2.45; - $y = -2.45; - $t = 1; - $x = log($Summary{'Reports'}[$index]{'AccRatioR'}) / $l10 if ($Summary{'Reports'}[$index]{'AccRatioR'} > 0 ); - $y = log($Summary{'Reports'}[$index]{'AccRatioW'}) / $l10 if ($Summary{'Reports'}[$index]{'AccRatioW'} > 0 ); - $t = log($Summary{'Reports'}[$index]{'DeallocAge'} / $total_instructions) / $l10 if ($Summary{'Reports'}[$index]{'DeallocAge'} > 0 ); - print PIPE "h1.Fill($x,$y);\n"; - print PIPE "h2.Fill($t);\n"; -} -print PIPE "h1.Draw(\"box\");\n"; -print PIPE "double x0[] = { 6.5, -2.5 };\n"; -print PIPE "double y0[] = { 6.5, -2.5 };\n"; -print PIPE "TGraph *gr0 = new TGraph(2,x0,y0);\n"; -print PIPE "gr0->SetLineColor(2);\n"; -print PIPE "gr0->SetLineWidth(1001);\n"; -print PIPE "gr0->SetFillStyle(3005);\n"; -print PIPE "gr0->SetFillColor(2);\n"; -print PIPE "gr0->Draw(\"C\");\n"; -print PIPE "double x1a[] = { -2.45, -2.45001 };\n"; -print PIPE "double y1a[] = { 6.5, -2.45 };\n"; -print PIPE "TGraph *gr1a = new TGraph(2,x1a,y1a);\n"; -print PIPE "gr1a->SetLineColor(3);\n"; -print PIPE "gr1a->SetLineWidth(1001);\n"; -print PIPE "gr1a->SetFillStyle(3005);\n"; -print PIPE "gr1a->SetFillColor(3);\n"; -print PIPE "gr1a->Draw();\n"; -print PIPE "double x1b[] = { -2.45, 6.5 };\n"; -print PIPE "double y1b[] = { -2.45, -2.45 };\n"; -print PIPE "TGraph *gr1b = new TGraph(2,x1b,y1b);\n"; -print PIPE "gr1b->SetLineColor(3);\n"; -print PIPE "gr1b->SetLineWidth(1001);\n"; -print PIPE "gr1b->SetFillStyle(3005);\n"; -print PIPE "gr1b->SetFillColor(3);\n"; -print PIPE "gr1b->Draw();\n"; -print PIPE "double x2[] = { -1, -1.00001 };\n"; -print PIPE "double y2[] = { 6.5, -2.45 };\n"; -print PIPE "TGraph *gr2 = new TGraph(2,x2,y2);\n"; -print PIPE "gr2->SetLineColor(4);\n"; -print PIPE "gr2->SetLineWidth(1001);\n"; -print PIPE "gr2->SetFillStyle(3005);\n"; -print PIPE "gr2->SetFillColor(4);\n"; -print PIPE "gr2->Draw();\n"; -print PIPE "double x3[] = { -2.45, 6.5 };\n"; -print PIPE "double y3[] = { -1, -1 };\n"; -print PIPE "TGraph *gr3 = new TGraph(2,x3,y3);\n"; -print PIPE "gr3->SetLineColor(5);\n"; -print PIPE "gr3->SetLineWidth(1001);\n"; -print PIPE "gr3->SetFillStyle(3005);\n"; -print PIPE "gr3->SetFillColor(5);\n"; -print PIPE "gr3->Draw();\n"; -print PIPE "h1.Draw(\"boxsame\");\n"; - -print PIPE "TLegend leg2(0.3,0.9,0.6,0.75);\n"; -print PIPE "leg2.AddEntry(gr1b,\"No Access\",\"f\");\n"; -print PIPE "leg2.AddEntry(gr2,\"Low Read\",\"f\");\n"; -print PIPE "leg2.AddEntry(gr3,\"Low Write\",\"f\");\n"; -print PIPE "leg2.AddEntry(gr0,\"More Write than Read\",\"f\");\n"; -print PIPE "leg2.Draw();\n"; - -print PIPE "c1.Print(\"MemoryAccess.jpg\");\n"; -print PIPE "c1.Print(\"MemoryAccess.eps\");\n"; - -print PIPE "h2.Draw();\n"; -print PIPE "double x9[] = { -2, -2 };\n"; -print PIPE "double xn=h2.GetMaximum();\n"; -print PIPE "double y9[] = { 0, 1.1 * xn };\n"; -print PIPE "TGraph *gr9 = new TGraph(2,x9,y9);\n"; -print PIPE "gr9->SetLineColor(2);\n"; -print PIPE "gr9->SetLineWidth(1001);\n"; -print PIPE "gr9->SetFillStyle(3005);\n"; -print PIPE "gr9->SetFillColor(2);\n"; -print PIPE "gr9->Draw();\n"; -print PIPE "h2.Draw(\"same\");\n"; - -print PIPE "TLegend leg(0.3,0.9,0.6,0.75);\n"; -print PIPE "leg.AddEntry(gr9,\"Long Lifetime\",\"f\");\n"; -print PIPE "leg.Draw();\n"; - -print PIPE "c1.Print(\"Lifetime.jpg\");\n"; -print PIPE "c1.Print(\"Lifetime.eps\");\n"; - -my $memory_max=0; -for my $index ( 0 .. scalar(@memorylines)-1 ) -{ - my ($m1,$m2,$m3,$m4) = ( $memorylines[$index] =~ /(\S+)\s(\S+)\s(\S+)\s(\S+)/ ); - my $in = $index+1; - if ( $m1 =~ m/g$/i ) - { - $m1 =~ s/g$//g; - $m1 *= 1024*1024; - } - if ( $m1 =~ m/m$/i ) - { - $m1 =~ s/m$//g; - $m1 *= 1024; - } - if ( $m2 =~ m/g$/i ) - { - $m2 =~ s/g$//g; - $m2 *= 1024*1024; - } - if ( $m2 =~ m/m$/i ) - { - $m2 =~ s/m$//g; - $m2 *= 1024; - } - my ($m4m,$m4s) = ( $m4 =~ /(\d+)\:([\d\.]+)/ ); - $m4 = 60 * $m4m + $m4s; - print PIPE "m1.SetBinContent($in,$m1);\n"; - print PIPE "m2.SetBinContent($in,$m2);\n"; - print PIPE "m3.SetBinContent($in,$m3);\n"; - print PIPE "m4.SetBinContent($in,$m4);\n"; - $memory_max = $m4 if ( $memory_max < $m4 ); -} -print PIPE "m1.SetStats(0);\n"; -print PIPE "m1.SetLineColor(kRed);\n"; -print PIPE "m1.SetTitle(\"Memory/CPU usage: #color[1]{RSS} #color[2]{VMem} #color[3]{%CPU} #color[4]{Time}\");\n"; - -print PIPE "can->cd();\n"; -print PIPE "TPad *pad1 = new TPad(\"pad1\",\"\",0,0,1,1);\n"; -print PIPE "TPad *pad2 = new TPad(\"pad2\",\"\",0,0,1,1);\n"; -print PIPE "TPad *pad3 = new TPad(\"pad3\",\"\",0,0,1,1);\n"; -print PIPE "pad3->SetFillStyle(4000);\n"; -print PIPE "pad2->SetFillStyle(4000);\n"; -print PIPE "pad1->Draw();\n"; -print PIPE "pad1->cd();\n"; -print PIPE "m1.Draw();\n"; -print PIPE "m2.Draw(\"same\");\n"; -print PIPE "pad1->Update();\n"; - -print PIPE "Double_t ymin = 0;\n"; -print PIPE "Double_t ymax = 120;\n"; -print PIPE "Double_t dy = (ymax-ymin)/0.8;\n"; -print PIPE "Double_t xmin = 0;\n"; -print PIPE "Double_t xmax = " . scalar(@memorylines) . ";\n"; -print PIPE "Double_t dx = (xmax-xmin)/0.8;\n"; -print PIPE "pad2->Range(xmin-0.1*dx,ymin-0.1*dy,xmax+0.1*dx,ymax+0.1*dy);\n"; -print PIPE "pad2->Draw();\n"; -print PIPE "pad2->cd();\n"; -print PIPE "m3.SetStats(0);\n"; -print PIPE "m3.SetLineColor(kGreen);\n"; -print PIPE "m3.Draw(\"same\");\n"; -print PIPE "pad2->Update();\n"; -print PIPE "TGaxis *axis2 = new TGaxis(xmax,ymin,xmax,ymax,ymin,ymax,50510,\"+L\");\n"; -print PIPE "axis2->SetLabelColor(kGreen);\n"; -print PIPE "axis2->Draw();\n"; - -print PIPE "ymax = " . 1.1 * $memory_max . ";\n"; -print PIPE "dy = (ymax-ymin)/0.8;\n"; -print PIPE "pad3->Range(xmin-0.1*dx,ymin-0.1*dy,xmax+0.1*dx,ymax+0.1*dy);\n"; -print PIPE "pad3->Draw();\n"; -print PIPE "pad3->cd();\n"; -print PIPE "m4.SetStats(0);\n"; -print PIPE "m4.SetLineColor(kBlue);\n"; -print PIPE "m4.Draw(\"same\");\n"; -print PIPE "pad3->Update();\n"; -print PIPE "TGaxis *axis3 = new TGaxis(xmax+0.05*dx,ymin,xmax+0.05*dx,ymax,ymin,ymax,50510,\"+L\");\n"; -print PIPE "axis3->SetLabelColor(kBlue);\n"; -print PIPE "axis3->Draw();\n"; - -print PIPE "c1.Print(\"Memory.jpg\");\n"; -print PIPE "c1.Print(\"Memory.eps\");\n"; - -print PIPE ".q\n"; -close PIPE; - -my @args1 = ("convert", "-scale", "50%", "MemoryAccess.jpg", "MemoryAccess_sm.jpg"); -system(@args1) == 0 or die "system @args1 failed: $?"; -my @args2 = ("convert", "-scale", "50%", "Lifetime.jpg", "Lifetime_sm.jpg"); -system(@args2) == 0 or die "system @args2 failed: $?"; -my @args3 = ("convert", "-scale", "50%", "Memory.jpg", "Memory_sm.jpg"); -system(@args3) == 0 or die "system @args3 failed: $?"; - -print "done...\n"; - -print "creating html files\n"; - -my $name=""; -mkdir "html" || die "Cannot make directory new !\n"; -$name="html/no_access.html"; open(F1, '> '.$name); prepare_html(*F1, "NoAccess", $name); -$name="html/no_read.html"; open(F2, '> '.$name); prepare_html(*F2, "NoRead", $name); -$name="html/no_write.html"; open(F3, '> '.$name); prepare_html(*F3, "NoWrite", $name); -$name="html/no_free.html"; open(F4, '> '.$name); prepare_html(*F4, "NoFree", $name); -$name="html/low_read.html"; open(F5, '> '.$name); prepare_html(*F5, "LowRead", $name); -$name="html/low_write.html"; open(F6, '> '.$name); prepare_html(*F6, "LowWrite", $name); -$name="html/more_write.html"; open(F7, '> '.$name); prepare_html(*F7, "MoreWriteThanRead", $name); -$name="html/long_lifetime.html"; open(F8, '> '.$name); prepare_html(*F8, "LongLifetime", $name); -$name="html/info.html"; open(F9, '> '.$name); prepare_html(*F9, "Info", $name); -$name="html/rest.html"; open(FR, '> '.$name); prepare_html(*FR, "Rest", $name); - -open(F1p, '> NoAccess.html'); -open(F2p, '> NoRead.html'); -open(F3p, '> NoWrite.html'); -open(F4p, '> NoFree.html'); -open(F5p, '> LowRead.html'); -open(F6p, '> LowWrite.html'); -open(F7p, '> MoreWrite.html'); -open(F8p, '> LongLifetime.html'); -open(F9p, '> Info.html'); -open(FRp, '> Rest.html'); - -prepare_html2(*F1p, "NoAccess"); -prepare_html2(*F2p, "NoRead"); -prepare_html2(*F3p, "NoWrite"); -prepare_html2(*F4p, "NoFree"); -prepare_html2(*F5p, "LowRead"); -prepare_html2(*F6p, "LowWrite"); -prepare_html2(*F7p, "MoreWriteThanRead"); -prepare_html2(*F8p, "LongLifetime"); -prepare_html2(*F9p, "Info"); -prepare_html2(*FRp, "Rest"); - -my $c1=0; -my $c2=0; -my $c3=0; -my $c4=0; -my $c5=0; -my $c6=0; -my $c7=0; -my $c8=0; -my $c9=0; -my $cr=0; -my $cinfo; - -# report all memory allocations from report -for my $index ( 0 .. $#{ $Summary{'Reports'} } ) -{ - # never read from or written to - if ( $Summary{'Reports'}[$index]{'AccTotalR'} == 0 and - $Summary{'Reports'}[$index]{'AccTotalW'} == 0 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F1, *F1p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c1++; - } - # written, but never read from - if ( $Summary{'Reports'}[$index]{'AccTotalR'} == 0 and - $Summary{'Reports'}[$index]{'AccTotalW'} > 0 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F2, *F2p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c2++; - } - # read, but never written to - if ( $Summary{'Reports'}[$index]{'AccTotalR'} > 0 and - $Summary{'Reports'}[$index]{'AccTotalW'} == 0 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F3, *F3p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c3++; - } - # never freed - if ( $Summary{'Reports'}[$index]{'Dealloc'} eq "never" and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F4, *F4p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c4++; - } - # low read - if ( $Summary{'Reports'}[$index]{'AccRatioR'} < 0.1 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F5, *F5p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c5++; - } - # low write - if ( $Summary{'Reports'}[$index]{'AccRatioW'} < 0.1 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F6, *F6p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c6++; - } - # more write than read - if ( $Summary{'Reports'}[$index]{'AccTotalR'} < - $Summary{'Reports'}[$index]{'AccTotalW'} and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F7, *F7p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c7++; - } - # long lifetime - if ( $Summary{'Reports'}[$index]{'DeallocAge'} / $total_instructions > 0.01 and - $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*F8, *F8p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c8++; - } - # info - if ( $Summary{'Reports'}[$index]{'Reported'} < 0 ) - { - print_html(*F9, *F9p, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $c9++; - $cinfo = $Summary{'Reports'}[$index]{'String'}; - } - # rest - if ( $Summary{'Reports'}[$index]{'Reported'} == 0 ) - { - print_html(*FR, *FRp, $Summary{'Reports'}[$index]{'String'},$pid); - $Summary{'Reports'}[$index]{'Reported'}=1; - $cr++; - } -} - -open(FRp, '> Report.html'); -prepare_html_report(*FRp, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $cr, $cinfo); -open(FIp, '> JobInfo.html'); -prepare_html_jobinfo(*FIp, $cinfo); - -finish_html(*F1); -finish_html(*F2); -finish_html(*F3); -finish_html(*F4); -finish_html(*F5); -finish_html(*F6); -finish_html(*F7); -finish_html(*F8); -finish_html(*F9); -finish_html(*FR); - -print "done...\n"; -print "bye...\n"; diff --git a/Tools/ValgrindRTTJobs/share/historyNightlies.C b/Tools/ValgrindRTTJobs/share/historyNightlies.C deleted file mode 100755 index ea151709f9a2a7976a71755577aeb9c4a66409a4..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/historyNightlies.C +++ /dev/null @@ -1,125 +0,0 @@ - -{ - TGraph *g[8]; - g[0] = new TGraph("report_def.log"); - g[1] = new TGraph("report_ind.log"); - g[2] = new TGraph("report_pos.log"); - g[3] = new TGraph("report_str.log"); - - g[4] = new TGraph("report_mfd.log"); - g[5] = new TGraph("report_cjm.log"); - g[6] = new TGraph("report_inv.log"); - g[7] = new TGraph("report_stc.log"); - - TH1D* h[8]; - - int N; - - int mxx(-1); - int mxn(-1); - int myx(-1); - int myn(-1); - double Xmax(-1); - double Xmin(1000); - double Ymax(-1); - double Ymin(1000); - for ( int ng=0; ng<8; ++ng ) - { - N = g[ng]->GetN(); - for ( int nb=0; nbGetPoint(nb,x,y) == nb ) - { - if ( y > Ymax ) Ymax = y, myx = ng; - if ( y < Ymin ) Ymin = y, myn = ng; - if ( x > Xmax ) Xmax = x, mxx = ng; - if ( x < Xmin ) Xmin = x, mxn = ng; - } - else - { - std::cout << "ERROR : " << ng << " " << nb << "\n"; - } - } - } - int nbins = Xmax-Xmin+1; - - for ( int ng=0; ng<8; ++ng ) - { - h[ng] = new TH1D(g[ng]->GetTitle(),g[ng]->GetName(),14, Xmax-13.5,Xmax+0.5); - h[ng]->SetBarWidth(0.12); - h[ng]->SetBarOffset(0.02+0.12*ng); - h[ng]->SetFillColor(1+ng); - - // shift down, if some nightlies weren't available - for ( int nb=0; nb<14; ++nb ) - h[ng]->SetBinContent(nb+1,-20); - - N = g[ng]->GetN(); - for ( int nb=0; nbGetPoint(nb,x,y) == nb ) - h[ng]->Fill(x,20+y); - } - } - h[7]->SetFillColor(11); - - TCanvas c("nightlies","nightlies",1200,450); - - c.SetLeftMargin(0.05); - c.SetRightMargin(0.04); - c.SetTopMargin(0.15); - c.SetBottomMargin(0.1); - - h[myx]->SetTitle("Results for last 14 nightlies"); - h[myx]->SetMinimum(-5); - h[myx]->SetStats(0); - h[myx]->Draw("bar2"); - - double hym = 1.05 * h[myx]->GetMaximum(); - TLine tl; - TText tt; tt.SetTextSize(0.03); - TString rel(gSystem->Getenv("AtlasVersion")); - - char relc = rel(4); - int reli = 7 + int(relc) - int ('0') + 1; - std::cout << "rel : " << rel << " " << relc << " " << reli << "\n"; - - for ( int ng=Xmax-14; ngAddEntry(h[0],"definitely losts","F"); - leg1->AddEntry(h[1],"indirectly losts","F"); - leg1->Draw(); - TLegend *leg1=new TLegend(0.45,0.88,0.58,0.98); - leg1->AddEntry(h[2],"possibly losts","F"); - leg1->AddEntry(h[3],"still reachable","F"); - leg1->Draw(); - TLegend *leg1=new TLegend(0.65,0.88,0.78,0.98); - leg1->AddEntry(h[4],"mix. free/delete","F"); - leg1->AddEntry(h[5],"jmp/mv on uninit","F"); - leg1->Draw(); - TLegend *leg1=new TLegend(0.85,0.88,0.98,0.98); - leg1->AddEntry(h[6],"invalid reads","F"); - leg1->AddEntry(h[7],"athena returns","F"); - leg1->Draw(); - for ( int ng=0; ng<8; ++ng ) - { - h[ng]->Draw("bar2same"); - for ( int nb=0; nb<14; ++nb ) - { - double y = h[ng]->GetBinContent(nb+1); - TString cont(""); cont += y; - if ( y >= 0 && y < 10 ) - tt.DrawText(Xmax-13.8+nb+0.12*ng,y*1.03+0.13,cont); - } - } - c.Print("history.eps"); - c.Print("history.gif"); -} diff --git a/Tools/ValgrindRTTJobs/share/hlt.py b/Tools/ValgrindRTTJobs/share/hlt.py deleted file mode 100644 index 81bc6efec92529dfe5f5e205396a1ebb462f0a16..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/hlt.py +++ /dev/null @@ -1,16 +0,0 @@ - -from RecExConfig.RecFlags import rec -rec.doPerfMon.set_Value_and_Lock(False) - -from TriggerJobOpts.TriggerFlags import TriggerFlags -if 'doLVL2' in dir(): - TriggerFlags.doEF = False -elif 'doEF' in dir(): - TriggerFlags.doLVL2 = False - -# old, outdated: include("TriggerTest/testAthenaTrigRDO.py") -include("TriggerTest/testValgrindTrigBS_standalone.py") -TriggerFlags.enableMonitoring = [ 'Time' ] - -jobproperties.PerfMonFlags.doMonitoring = False -jobproperties.PerfMonFlags.doFastMon = False diff --git a/Tools/ValgrindRTTJobs/share/memConsumption.C b/Tools/ValgrindRTTJobs/share/memConsumption.C deleted file mode 100755 index fed02b8296c0cb8c8f07dd7a8f897b452aa6015c..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/memConsumption.C +++ /dev/null @@ -1,68 +0,0 @@ - -{ - TGraph gm("mem"); - gm.SetTitle("Memory [Mb] allocated by memcheck / #color[3]{CPU percentage};approx. runtime [s]"); - double xm(0), ym(0); - for( int i=0; i ym ) - ym=y, xm=x; - } - ym/=1000; - // std::cout << ym << " " << xm << "\n"; - /* - TPad *pad = new TPad("pad","",0,0,1,1); - pad->SetFillColor(42); - pad->SetGrid(); - pad->Draw(); - pad->cd(); - - TH1F *hr = pad->DrawFrame(-0.4,0,1.2,12); - hr->SetXTitle("X title"); - hr->SetYTitle("Y title"); - pad->GetFrame()->SetFillColor(21); - pad->GetFrame()->SetBorderSize(12); - */ - TLine tl; - tl.SetLineColor(kRed); - gm.Draw("AC"); - tl.DrawLine(0,ym,xm,ym); - tl.DrawLine(xm,ym,xm,0); - TText tt; - tt.SetTextSize(0.025); - tt.SetTextColor(kRed); - TString s("max="); s+=ym; - tt.DrawText(xm/100,ym,s); - - TGraph gc("cpu"); - c1->cd(); - double pxl,pyl,pxh,pyh; - gPad->GetRange(pxl,pyl,pxh,pyh); - // TPad *overlay = new TPad("overlay","",0,0,1,1); - TPad *overlay = new TPad("overlay","",pxl,pyl,pxh,pyh); - overlay->SetFillStyle(4000); - overlay->SetFillColor(0); - overlay->SetFrameFillStyle(4000); - overlay->Draw(); - overlay->cd(); - Double_t xmin = gPad->GetUxmin(); - Double_t ymin = 0; - Double_t xmax = gPad->GetUxmax(); - Double_t ymax = 120; - xmax=gm.GetXaxis().GetXmax(); - std::cout << "R : " << xmax << " - " << xmin << "\n"; - TH1F *hframe = overlay->DrawFrame(xmin,ymin,xmax,ymax); - hframe->GetXaxis()->SetLabelOffset(99); - hframe->GetYaxis()->SetLabelOffset(99); - gc.SetLineColor(kGreen); - gc->Draw("LP"); - TGaxis *axis = new TGaxis(xmax,ymin,xmax, ymax,ymin,ymax,510,"+L"); - axis->SetLineColor(kGreen); - axis->SetLabelColor(kGreen); - axis->Draw(); - c1->Print("mem.eps"); - c1->Print("mem.gif"); -} diff --git a/Tools/ValgrindRTTJobs/share/newSuppressions.supp b/Tools/ValgrindRTTJobs/share/newSuppressions.supp deleted file mode 100644 index 9fb50b96446f6aaf06485a6d35811322aea160e1..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/newSuppressions.supp +++ /dev/null @@ -1,8381 +0,0 @@ -{ - ROOT::GenerateInitInstanceLocal( all const * ) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK* - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK* -} -{ - Reflex::FunctionTypeBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::PointerBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex14PointerBuilderERK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::PluginService::PluginService() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex13PluginServiceC1Ev - fun:_ZN6Reflex13PluginService8InstanceEv - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeBase::TypeBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPK* - fun:_ZN6Reflex5ClassC1EPK* - fun:_ZN6Reflex16ClassBuilderImplC1EPK* - fun:_ZN6Reflex12ClassBuilderC1EPK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeBase::TypeBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES*_ - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Athena::Signal::handleFatal - Memcheck:Leak - fun:_Znwj - fun:_ZN6Athena6Signal11handleFatalEPKciPFbiP7siginfoPvEPFviS4_S5_Ej - fun:_ZN14AthenaServices15SetFatalHandlerEi - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_AthenaServices_AthenaServicesDict_gen_rflx.cpp_9D2164D3_05938A7511method_3725EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami -} -{ - Reflex::FunctionMemberTemplateInstance::FunctionMemberTemplateInstance - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPK* - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::ClassBuilderImpl::AddEnum - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPK* - fun:_ZN6Reflex12ClassBuilder7AddEnumEPK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::ClassBuilderImpl::AddTypedef - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERK* - fun:_ZN6Reflex12ClassBuilder10AddTypedefERK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeBase::TypeBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPK* - fun:_ZN6Reflex8FunctionC1ERK* - fun:_ZN6Reflex19FunctionTypeBuilderERK* - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeName::TypeName - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex11TypeBuilderEPKcj - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypeName::TypeName - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex8TypeBaseC2EPKc*NS_4TYPEERKSt9type_infoRKNS_4TypeE - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::Instance::Instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8InstanceC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6Reflex8InstanceC2Ev -} -{ - Reflex::TypeName::TypeName - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7TypedefC1EPKcRKNS_4TypeENS_4TYPEES5_ - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERKNS_4TypeEPKc - fun:_ZN6Reflex12ClassBuilder10AddTypedefERKNS_4TypeEPKc - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::MemberTemplateImpl::MemberTemplateImpl - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::MemberTemplateImpl::MemberTemplateImpl - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISsE8allocateEjPKv - ... - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::EnumBuilder::AddItem - fun:_Znwj - fun:_ZN6Reflex11EnumBuilder7AddItemEPKcl - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::FunctionTypeBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo5SetupEv - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer5SetupEv - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - fun:_ZN4ROOT6Cintex6Cintex6EnableEv -} -{ - Reflex::TypeTemplateImpl::TypeTemplateImpl - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISsE8allocateEjPKv - fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEj - fun:_ZNSt12_Vector_baseISsSaISsEEC2EjRKS0_ - fun:_ZNSt6vectorISsSaISsEEC1ERKS1_ - fun:_ZN6Reflex16TypeTemplateImplC1EPKcRKNS_5ScopeESt6vectorISsSaISsEES8_ - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::TypedefTypeBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18TypedefTypeBuilderEPKcRKNS_4TypeE - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TStringRef::GetRep - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TString7ReplaceEiiPKci - fun:_ZN7TStringaSEPKc - fun:_ZN9TFunctionC2EPv - fun:_ZN7TMethodC1EPvP6TClass -} -{ - TStringRef::GetRep - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - ... - fun:_ZN4Cint11G__CallFunc7ExecuteEPv -} -{ - Reflex::TypeBase::TypeBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7TypedefC1EPKcRKNS_4TypeENS_4TYPEES5_ - fun:_ZN6Reflex18TypedefTypeBuilderEPKcRKNS_4TypeE - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::EnumTypeBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15EnumTypeBuilderEPKcS1_RKSt9type_infoj - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::NamespaceBuilder::NamespaceBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16NamespaceBuilderC1EPKc - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::FunctionBuilder::FunctionBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TCollectionProxyFactory::GenExplicitClassStreamer - Memcheck:Leak - fun:_Znwj - fun:_ZN23TCollectionProxyFactory24GenExplicitClassStreamerERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN13TStreamerInfo24GenExplicitClassStreamerERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN6TClass18SetCollectionProxyERKN4ROOT20TCollectionProxyInfoE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo19Default_CreateClassEN6Reflex4TypeEPNS_17TGenericClassInfoE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo15Stub_DictionaryEPv -} -{ - Reflex::ArrayBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex12ArrayBuilderERKNS_4TypeEjRKSt9type_info - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TStorage::ObjectAlloc - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZNK4ROOT20TQObjectInitBehavior11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES2_S2_ii - fun:_ZN4ROOT17TGenericClassInfo8GetClassEv -} -{ - Reflex::ClassTemplateInstance::ClassTemplateInstance - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex12ClassBuilderC1EPKcRKSt9type_infojjNS_4TYPEE - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::FunctionBuilder::FunctionBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::EnumBuilder::EnumBuilder - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11EnumBuilderC1EPKcRKSt9type_infoj - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TCollectionProxyFactory::GenExplicitProxy - Memcheck:Leak - fun:_Znwj - fun:_ZN23TCollectionProxyFactory16GenExplicitProxyERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN13TStreamerInfo16GenExplicitProxyERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN6TClass18SetCollectionProxyERKN4ROOT20TCollectionProxyInfoE - fun:_ZN4ROOT17TGenericClassInfo8GetClassEv - fun:_ZN4ROOT27vectorlEstringgR_DictionaryEv -} -{ - Reflex::FunctionMemberTemplateInstance::FunctionMemberTemplateInstance - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - PyObject_Realloc - Memcheck:Leak - fun:realloc - fun:PyObject_Realloc - fun:_PyObject_GC_Resize - fun:PyFrame_New - fun:PyEval_EvalCodeEx - fun:PyEval_EvalFrameEx -} -{ - THashTable::THashTable - fun:_Znaj - fun:_ZN10THashTableC1Eii - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_iib - fun:_ZN6TClassC1EPKcsS1_S1_iib - fun:_ZN6TClass8GetClassEPKcbb - ... -} -{ - TList::NewLink - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList7NewLinkEP7TObjectP8TObjLink - fun:_ZN5TList7AddLastEP7TObject - fun:_ZN5TList3AddEP7TObject - ... -} -{ - G__savestring - Memcheck:Leak - fun:malloc - fun:G__savestring - ... - fun:_ZN4ROOT6Cintex15CINTEnumBuilder5SetupERKN6Reflex4TypeE - fun:_ZN4ROOT6Cintex16CINTClassBuilder15Setup_typetableEv - fun:_ZN4ROOT6Cintex16CINTClassBuilder5SetupEv -} -{ - TCint::UpdateListOfTypes - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint17UpdateListOfTypesEv - fun:_ZN5TCint4LoadEPKcb - fun:_ZN7TSystem4LoadEPKcS1_b - fun:_ZN11TUnixSystem4LoadEPKcS1_b - fun:_ZN5TROOT9LoadClassEPKcS1_b -} -{ - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:PyString_FromString -} -{ - TStorage::ObjectAlloc - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN4ROOT11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer23CreateClassForNamespaceERKSs - fun:_ZN4ROOT6Cintex16CINTScopeBuilder5SetupERKN6Reflex5ScopeE -} -{ - Reflex::ScopeName::ScopeName - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::MemberBase::MemberBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex14FunctionMemberC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jNS_4TYPEE - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::ScopeName::ScopeName - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex11TypeBuilderEPKcj - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - deflate_fast - Memcheck:Cond - fun:fill_window - fun:deflate_fast - fun:deflate - fun:R__zip - ... - fun:_ZN14TDirectoryFile12WriteTObjectEPK7TObjectPKcS4_i -} -{ - IntelFastMemCmp - Memcheck:Cond - fun:_intel_fast_memcmp - obj:*libnnz10.so -} -{ - Oracle - Memcheck:Cond - fun:CMP_CMPIntToOctetString - ... - fun:OCISessionBegin -} -{ - deflate_fast - Memcheck:Cond - fun:fill_window - fun:deflate_fast - fun:deflate - fun:R__zip - ... - fun:_ZN14TBranchElement4FillEv -} -{ - longest_match - Memcheck:Cond - fun:longest_match - fun:deflate_fast - fun:deflate - fun:R__zip - ... - fun:_ZN4pool17RootTreeContainer14endTransactionERNS_13DbTransactionE -} -{ - pool::DbSelect - Memcheck:Leak - fun:_Znwj - fun:_ZN4pool8DbSelect4nextERPNS_5TokenE - fun:_ZN4pool17DbStorageExplorer4nextERNS_8DbSelectERPNS_5TokenE - fun:_ZN4pool14PersistencySvc13TokenIterator4nextEv - fun:_ZNK7PoolSvc9getTokensERKSsS1_ - ... - fun:_ZN23EventSelectorAthenaPool10initializeEv -} -{ - ROOT::Cintex::Constructor_stub_with_context - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex29Constructor_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - ... - fun:_ZN22TGenCollectionStreamer11ReadObjectsEiR7TBuffer -} -{ - TStorage::ObjectAlloc - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - ... - fun:_ZN6TClass8GetClassEPKcbb -} -{ - TGenCollectionProxy::Generate - Memcheck:Leak - fun:_Znwj - fun:_ZNK19TGenCollectionProxy8GenerateEv - ... - fun:_ZNK4pool11DbContainer4loadEPNS_12DataCallBackERKSt4pairIiiEi -} -{ - TStringRef::GetRep - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - ... - fun:_ZN4Cint11G__CallFunc7ExecuteEPv -} -{ - TStringRef::GetRep - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - ... - fun:_ZN11TUnixSystem4LoadEPKcS1_b -} -{ - Reflex::ScopeBase::ScopeBase - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - ... - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex::Environ - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP7Muon_p5St6vectorIS3_SaIS3_EEEEE6CreateEv - ... - fun:_ZN16AthenaPoolCnvSvc12commitOutputERKSsb -} - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex5ScopeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex5ScopeESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex5ScopeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex5ScopeESaIS1_EE9push_backERKS1_ - } - { - (anonymous#namespace)::CreateULongLongConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE24CreateULongLongConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - CMP_CMPIntToFixedLenOctetStr - Memcheck:Cond - fun:CMP_CMPIntToOctetString - fun:CMP_CMPIntToFixedLenOctetStr - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - fun:ztcsh - } - { - (anonymous#namespace)::CreateIntExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE17CreateIntExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A93__SimpleProperty_std__vector_unsignedsint__BoundedVerifier_std__vector_unsignedsint_s_s__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - slfigf - Memcheck:Leak - fun:malloc - fun:slfigf - fun:lfiostd - fun:lfiboot - fun:lfirist - } - { - TSystem::DirName(char#const*) - Memcheck:Leak - fun:_Znaj - fun:_ZN7TSystem7DirNameEPKc - fun:_ZN7TSystem4LoadEPKcS1_b - fun:_ZN11TUnixSystem4LoadEPKcS1_b - fun:_Z21G__G__Base2_236_0_119P8G__valuePKcP8G__parami - } - { - boost::python::objects::py_function::py_function,#boost::python::default_call_policies,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::python::default_call_policies,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIjN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS8_RKjEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIjN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKjEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIjN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKjEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIjN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKjEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7850__std__vector_SmartRef_ObjectContainerBase_s__dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - half_richcompare - Memcheck:Leak - fun:malloc - fun:half_richcompare - fun:instance_richcompare - fun:try_rich_compare - fun:PyObject_RichCompare - } - { - slzsetevar - Memcheck:Leak - fun:malloc - fun:slzsetevar - fun:lfvSetOHome - fun:slpmloclfv - fun:slpmloc - } - { - TUnixSystem::Init() - Memcheck:Leak - fun:_Znwj - fun:_ZN11TUnixSystem4InitEv - fun:_ZN5TROOT10InitSystemEv - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERNS6_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS8_SB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERNS3_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS5_S8_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7u32listERNS2_5write17FullEventFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S7_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper7u32listERS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SG_T0_RKT1_z - } - { - G__allocvariable - Memcheck:Leak - fun:malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__memvar_setup - } - { - G__createtemplatememfunc - Memcheck:Leak - fun:malloc - fun:G__createtemplatememfunc - fun:G__declare_template - fun:G__exec_statement - fun:G__loadfile - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#const=,#std::basic_string,#std::allocator#>#const=,#bool),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>#const=,#std::basic_string,#std::allocator#>#const=,#bool>#>#>(boost::python::detail::caller,#std::allocator#>#const=,#std::basic_string,#std::allocator#>#const=,#bool),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>#const=,#std::basic_string,#std::allocator#>#const=,#bool>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKSsS9_bENS0_21default_call_policiesENS_3mpl7vector5IvS7_S9_S9_bEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKSsS6_bENS0_21default_call_policiesENS_3mpl7vector5IvS4_S6_S6_bEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKSsS6_bENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector3IRKSsS6_bEENS3_4sizeIS7_EENS0_7objects12value_holderIN7eformat6helper9StreamTagEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - ROOT::Cintex::ROOTClassEnhancerInfo::CreateInfo() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo10CreateInfoEv - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer10CreateInfoEv - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - fun:_ZN6Reflex17FireClassCallbackERKNS_4TypeE - } - { - lfirist - Memcheck:Leak - fun:malloc - fun:lfirist - fun:lpminitm - fun:lpminit - fun:LhtIntCreate - } - { - ROOT::Cintex::CINTClassBuilder::Get(Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex16CINTClassBuilder3GetERKN6Reflex4TypeE - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528132Declare_additional_CINT_typedefsEv - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPdSt6vectorIdSaIdEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#(*)(eformat::FullEventFragment#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>,#eformat::FullEventFragment#const=>#>#>(boost::python::detail::caller#>#(*)(eformat::FullEventFragment#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>,#eformat::FullEventFragment#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSt6vectorIN7eformat6helper9StreamTagESaIS9_EERKNS7_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2ISB_SH_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSt6vectorIN7eformat6helper9StreamTagESaIS6_EERKNS4_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordES10_ET2_ - fun:_ZN5boost6python13make_functionIPFSt6vectorIN7eformat6helper9StreamTagESaIS5_EERKNS3_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS7_SD_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFSt6vectorINS2_6helper9StreamTagESaISL_EERKS6_ENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SU_T0_RKT1_z - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPK8PropertyE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPK8PropertySaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIPK8PropertySaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIPK8PropertySaIS2_EE9push_backERKS2_ - } - { - G__search_typename - Memcheck:Leak - fun:malloc - fun:G__search_typename - fun:G__search_typename2 - fun:_ZN4ROOT6Cintex18CINTTypedefBuilder5SetupERKN6Reflex4TypeE - fun:_ZN4ROOT6Cintex16CINTClassBuilder15Setup_typetableEv - } - { - TCollectionProxyFactory::GenExplicitProxy(ROOT::TCollectionProxyInfo#const=,#TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN23TCollectionProxyFactory16GenExplicitProxyERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN13TStreamerInfo16GenExplicitProxyERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN6TClass18SetCollectionProxyERKN4ROOT20TCollectionProxyInfoE - fun:_ZN4pool11createClassEN6Reflex4TypeEPN4ROOT17TGenericClassInfoE - } - { - nlhtnsl - Memcheck:Leak - fun:calloc - fun:nlhtnsl - fun:nlhthnew - fun:nlhthnewWDup - fun:nsgblini - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFNS6_7DWErrorEjENS0_21default_call_policiesENS_3mpl7vector3IS8_RS7_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFNS3_7DWErrorEjENS0_21default_call_policiesENS_3mpl7vector3IS5_RS4_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFNS2_7DWErrorEjENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS4_RS3_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FNS2_7DWErrorEjENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SF_T0_RKT1_z - } - { - G__checkIfOnlyFunction - Memcheck:Leak - fun:malloc - fun:G__checkIfOnlyFunction - fun:G__loadfile - fun:G__loadsystemfile - fun:_ZN5TCint4LoadEPKcb - } - { - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:PyString_FromString - fun:PyType_Ready - fun:PyType_Ready - } - { - Reflex::PointerBuilder(Reflex::Type#const=,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex14PointerBuilderERKNS_4TypeERKSt9type_info - fun:_ZN6Reflex13TypeDistillerIP10IAlgorithmE3GetEv - fun:_ZN6Reflex17FunctionDistillerIFP10IAlgorithmSsP11ISvcLocatorEE3GetEv - fun:_ZN60_GLOBAL__N_.._src_ToyNextPassFilterAlg.cxx_EF105EC1_348EAF1526ToyNextPassFilterAlg_dict5C1Ev - } - { - G__savestring - Memcheck:Leak - fun:malloc - fun:G__savestring - fun:G__make_ifunctable - fun:G__define_var - fun:G__exec_statement - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>*#(*)(eformat::FullEventFragment#const=),#boost::python::return_value_policy#>,#boost::mpl::vector2,#std::less,#std::allocator#>#>#>*,#eformat::FullEventFragment#const=>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>*#(*)(eformat::FullEventFragment#const=),#boost::python::return_value_policy#>,#boost::mpl::vector2,#std::less,#std::allocator#>#>#>*,#eformat::FullEventFragment#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFPSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEERKNS7_17FullEventFragmentISC_EEENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS_3mpl7vector2ISL_SP_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFPSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEERKNS4_17FullEventFragmentIS9_EEENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS_3mpl7vector2ISI_SM_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES1C_ET2_ - fun:_ZN5boost6python13make_functionIPFPSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEERKNS3_17FullEventFragmentIS8_EEENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2ISH_SL_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFPSt3mapINS2_6helper16SourceIdentifierENS2_11ROBFragmentIS5_EESt4lessISL_ESaISt4pairIKSL_SN_EEERKS6_ENSF_10def_helperINS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - int#PyROOT::BuildRootClassDict(PyROOT::TScopeAdapter#const=,#_object*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - fun:_ZN6PyROOT19BuildRootClassBasesINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKT_ - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>=,#_object*,#_object*),#boost::python::default_call_policies,#boost::mpl::vector4,#std::less,#std::allocator#>#>#>=,#_object*,#_object*>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>=,#_object*,#_object*),#boost::python::default_call_policies,#boost::mpl::vector4,#std::less,#std::allocator#>#>#>=,#_object*,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEEP7_objectSN_ENS0_21default_call_policiesENS_3mpl7vector4IvSL_SN_SN_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEEP7_objectSK_ENS0_21default_call_policiesENS_3mpl7vector4IvSI_SK_SK_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES15_ET2_ - fun:_ZN5boost6python13make_functionIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEEP7_objectSJ_ENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector4IvSH_SJ_SJ_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEENS0_6detail13not_specifiedESI_SI_E8def_implISG_PFvRSG_P7_objectSN_ENSH_10def_helperIPKcSI_SI_SI_EEEEvPT_SS_T0_RKT1_z - } - { - __static_initialization_and_destruction_0(int,#int) - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6TLimit7fgTableE - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libHist.so - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libHist.so - } - { - PyArena_New - Memcheck:Leak - fun:malloc - fun:PyArena_New - fun:PyRun_FileExFlags - fun:PyRun_SimpleFileExFlags - fun:PyRun_AnyFileExFlags - } - { - ROOT::Cintex::Constructor_stub_with_context(ROOT::Cintex::StubContext_t*,#G__value*,#char#const*,#G__param*,#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex29Constructor_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - obj:* - fun:_ZN4Cint11G__CallFunc7ExecuteEPv - fun:_ZN4Cint11G__CallFunc7ExecIntEPv - } - { - G__loadfile - Memcheck:Leak - fun:malloc - fun:G__loadfile - fun:G__process_cmd - fun:_ZN5TCint11ProcessLineEPKcPN12TInterpreter10EErrorCodeE - fun:_ZN5TCint16ProcessLineSynchEPKcPN12TInterpreter10EErrorCodeE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFbvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IbRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FbvENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SE_T0_RKT1_z - } - { - PyObject_Realloc - Memcheck:Leak - fun:realloc - fun:PyObject_Realloc - fun:_PyObject_GC_Resize - fun:PyFrame_New - fun:PyEval_EvalFrameEx - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper8u32sliceEKFjlENS0_21default_call_policiesENS_3mpl7vector3IjRS8_lEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper8u32sliceEKFjlENS0_21default_call_policiesENS_3mpl7vector3IjRS5_lEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper8u32sliceEKFjlENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IjRS4_lEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper8u32sliceENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjlENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISsEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE14_M_create_nodeERKSs - fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE9_M_insertEPSt18_Rb_tree_node_baseS7_RKSs - } - { - boost::python::objects::py_function::py_function#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>#const=>#>#>(boost::python::detail::caller#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_3api6objectERKSt4pairIKN7eformat6helper16SourceIdentifierENS9_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS_3mpl7vector2IS7_SJ_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_3api6objectERKSt4pairIKN7eformat6helper16SourceIdentifierENS6_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS_3mpl7vector2IS4_SG_EEN4mpl_4int_ILi0EEEEES4_T_RKT0_RKT1_RKS5_IPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_3api6objectERKSt4pairIKN7eformat6helper16SourceIdentifierENS5_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS3_SF_EEEES3_T_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt4pairIKN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEEENS0_6detail13not_specifiedESD_SD_E8def_implISB_PFNS0_3api6objectERKSB_ENSC_10def_helperIPKcSD_SD_SD_EEEEvPT_SO_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(*)(eformat::HeaderMarker#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::HeaderMarker#const=>#>#>(boost::python::detail::caller,#std::allocator#>#(*)(eformat::HeaderMarker#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::HeaderMarker#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSsRKN7eformat12HeaderMarkerEENS0_21default_call_policiesENS_3mpl7vector2ISsS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSsRKN7eformat12HeaderMarkerEENS0_21default_call_policiesENS_3mpl7vector2ISsS6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFSsRKN7eformat12HeaderMarkerEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFSsRKN7eformat12HeaderMarkerEEEENS0_3api6objectET_z - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPcSt6vectorIcSaIcEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#(*)(eformat::write::FullEventFragment#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>,#eformat::write::FullEventFragment#const=>#>#>(boost::python::detail::caller#>#(*)(eformat::write::FullEventFragment#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>,#eformat::write::FullEventFragment#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSt6vectorIN7eformat6helper9StreamTagESaIS9_EERKNS7_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2ISB_SF_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSt6vectorIN7eformat6helper9StreamTagESaIS6_EERKNS4_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS8_SC_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFSt6vectorIN7eformat6helper9StreamTagESaIS5_EERKNS3_5write17FullEventFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS7_SB_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFSt6vectorINS2_6helper9StreamTagESaISB_EERKS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SK_T0_RKT1_z - } - { - G__define_type - Memcheck:Leak - fun:malloc - fun:G__define_type - fun:G__exec_statement - fun:G__loadfile - fun:G__include_file - } - { - lfiostd - Memcheck:Leak - fun:malloc - fun:lfiostd - fun:lfiboot - fun:lfirist - fun:lpminitm - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>=>,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=>,#_object*>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>=>,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=>,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_3api6objectENS0_14back_referenceIRSt3mapIN7eformat6helper16SourceIdentifierENSA_11ROBFragmentIPKjEESt4lessISC_ESaISt4pairIKSC_SG_EEEEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IS7_SP_SR_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_3api6objectENS0_14back_referenceIRSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEEEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IS4_SM_SO_EEN4mpl_4int_ILi0EEEEES4_T_RKT0_RKT1_RKSG_IPKNS1_7keywordES17_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_3api6objectENS0_14back_referenceIRSt3mapIN7eformat6helper16SourceIdentifierENS6_11ROBFragmentIPKjEESt4lessIS8_ESaISt4pairIKS8_SC_EEEEEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS3_SL_SN_EEEES3_T_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEENS0_6detail13not_specifiedESI_SI_E8def_implISG_PFNS0_3api6objectENS0_14back_referenceIRSG_EEP7_objectENSH_10def_helperIPKcSI_SI_SI_EEEEvPT_SW_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::python::return_value_policy,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::python::return_value_policy,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIyN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRyRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIyN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRyRS5_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIyN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRyRS5_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIyN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRyRS5_EEEENS0_3api6objectET_RKT0_RKT1_ - } - { - (anonymous#namespace)::CreateCharExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE18CreateCharExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - DebugPrint(char#const*,#...) - Memcheck:Leak - fun:_Znaj - fun:_Z10DebugPrintPKcz - fun:_Z19DefaultErrorHandleribPKcS0_ - fun:_ZN6PyROOT7Utility13ErrMsgHandlerEibPKcS2_ - fun:ErrorHandler - } - { - TStorage::ObjectAlloc(unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN5TCint23CreateListOfDataMembersEP6TClass - fun:_ZN6TClass20GetListOfDataMembersEv - } - { - lpmpali - Memcheck:Leak - fun:malloc - fun:lpmpali - fun:lpminitm - fun:lpminit - fun:LhtIntCreate - } - { - Reflex::NamespaceBuilder::NamespaceBuilder(char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16NamespaceBuilderC1EPKc - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - obj:/afs/cern.ch/atlas/offline/external/GAUDI/v20r4p4-LCG56c/GaudiKernel/i686-slc4-gcc34-dbg/libGaudiKernelDict.so - } - { - G__memfunc_next - Memcheck:Leak - fun:malloc - fun:G__memfunc_next - fun:G__memfunc_setup_imp - fun:G__memfunc_setup - fun:G__usermemfunc_setup - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZNK6TClass15GetStreamerInfoEi - fun:_Z24R__GenerateTClassForPairRKSsS0_ - } - { - std::vector#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex,#std::allocator#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex>#>::_M_fill_insert(__gnu_cxx::__normal_iterator#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex*,#std::vector#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex,#std::allocator#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex>#>#>,#unsigned#int,#boost::detail::adj_list_gen#>,#boost::no_property,#boost::listS>,#boost::vecS,#boost::vecS,#boost::bidirectionalS,#boost::no_property,#boost::property#>,#boost::no_property,#boost::listS>::config::stored_vertex#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSt6vectorIN5boost6detail12adj_list_genINS0_14adjacency_listINS0_4vecSES4_NS0_14bidirectionalSENS0_11no_propertyENS0_8propertyINS0_12edge_index_tEjNS7_INS0_67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11edge_cast_tEPFPvSB_ES6_EEEES6_NS0_5listSEEES4_S4_S5_S6_SF_S6_SG_E6config13stored_vertexESaISK_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSK_SM_EEjRKSK_ - fun:_ZN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11demand_typeENS_6python9type_infoE - fun:_ZN5boost6python7objects23register_dynamic_id_auxENS0_9type_infoEPFSt4pairIPvS2_ES4_E - fun:_ZN5boost6python7objects19register_dynamic_idIN12EventStorage10DataWriterEEEvPT_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper12DetectorMaskEKFyvENS0_21default_call_policiesENS_3mpl7vector2IyRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper12DetectorMaskEKFyvENS0_21default_call_policiesENS_3mpl7vector2IyRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper12DetectorMaskEKFyvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IyRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFyvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_5write17FullEventFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_5write17FullEventFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS5_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_5write17FullEventFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper8u32sliceERKS4_ENS5_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - _nc_doalloc - Memcheck:Leak - fun:malloc - fun:_nc_doalloc - fun:_nc_tparm_analyze - fun:tparm - fun:set_attribute_9 - } - { - CMP_ModularReduce - Memcheck:Cond - fun:CMP_SubtractInPlace - fun:CMP_ModularReduce - fun:Alg_ComputeModQ_GHash - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - } - { - boost::python::objects::py_function::py_function=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3=>#>#>(boost::python::detail::caller=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERNS6_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERNS3_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERNS2_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_11ROBFragmentIPKjEEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listINS0_8optionalIjN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl0EEENS0_7objects12value_holderIN7eformat6helper7VersionEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESV_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7VersionEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7VersionEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7VersionEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7VersionENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFtvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::ClassBuilderImpl::AddDataMember(char#const*,#Reflex::Type#const=,#unsigned#int,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl13AddDataMemberEPKcRKNS_4TypeEjj - fun:_ZN6Reflex13ClassBuilderTI11UIntDbArrayE13AddDataMemberERKNS_4TypeEPKcjj - fun:_Z23__initdbarraydictionaryIj11UIntDbArrayEvPT_PT0_RKSsS6_ - fun:_ZN50_GLOBAL__N_.._src_DbTypeInfo.cpp_9D2164D3_4B6BDF3A6__initC1Ev - } - { - boost::python::objects::py_function::py_function=),#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller=),#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbSB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbS8_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFbRN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbS8_EEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_ERKT1_ - fun:_ZN5boost6python6detail14name_space_defIPFbRN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS0_6class_IS7_NS_10shared_ptrIS7_EENS0_5basesINS3_6HeaderIS6_EEN4mpl_5void_ESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS1_13not_specifiedEEEEEvRT1_PKcT_RKSt4pairIPKNS1_7keywordESV_ERKT0_SQ_PNS0_7objects10class_baseE - } - { - Reflex::CFTGenerator#>#>#>::Generate() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex12CFTGeneratorINS_8PushbackISt6vectorIPK8PropertySaIS5_EEEEE8GenerateEv - fun:_ZN6Reflex5ProxyISt6vectorIPK8PropertySaIS4_EEE8GenerateEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A11method_x470EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZNK6Reflex14FunctionMember6InvokeEPNS_6ObjectERKSt6vectorIPvSaIS4_EE - } - { - sltskjadd - Memcheck:Leak - fun:malloc - fun:sltskjadd - fun:sltskminit - fun:sltsini - fun:slxmxinit - } - { - boost::python::objects::py_function::py_function#(*)(eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=>#>#>(boost::python::detail::caller#(*)(eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat11ROBFragmentIPKjEERKNS6_17FullEventFragmentIS9_EERKNS6_6helper16SourceIdentifierEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3ISA_SE_SI_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat11ROBFragmentIPKjEERKNS3_17FullEventFragmentIS6_EERKNS3_6helper16SourceIdentifierEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS7_SB_SF_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordES13_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat11ROBFragmentIPKjEERKNS2_17FullEventFragmentIS5_EERKNS2_6helper16SourceIdentifierEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS6_SA_SE_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_11ROBFragmentIS5_EERKS6_RKNS2_6helper16SourceIdentifierEENSF_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(eformat::helper::SourceIdentifier::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::helper::SourceIdentifier=>#>#>(boost::python::detail::caller,#std::allocator#>#(eformat::helper::SourceIdentifier::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::helper::SourceIdentifier=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFSsvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ISsRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFSsvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - nlhthcreate - Memcheck:Leak - fun:calloc - fun:nlhthcreate - fun:nlhtbnew - fun:nsgbliuc - fun:nsgblini - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#const=,#eformat::TagType#const=,#bool),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>#const=,#eformat::TagType#const=,#bool>#>#>(boost::python::detail::caller,#std::allocator#>#const=,#eformat::TagType#const=,#bool),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>#const=,#eformat::TagType#const=,#bool>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKSsRKN7eformat7TagTypeEbENS0_21default_call_policiesENS_3mpl7vector5IvS7_S9_SD_bEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKSsRKN7eformat7TagTypeEbENS0_21default_call_policiesENS_3mpl7vector5IvS4_S6_SA_bEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKSsRKN7eformat7TagTypeEbENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESN_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector3IRKSsRKN7eformat7TagTypeEbEENS3_4sizeISB_EENS0_7objects12value_holderINS7_6helper9StreamTagEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESS_EPT1_PT_PT0_ - } - { - void#Property::declareUpdateHandler(void#(ApplicationMgr::*)(Property=),#ApplicationMgr*) - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI14ApplicationMgrEEvMT_FvRS_EPS2_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - nldsinit - Memcheck:Leak - fun:malloc - fun:nldsinit - fun:nlstddt_do_alter_trace - fun:nlstdggo - fun:nlstdgg - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiPython__TupleDecorator_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectN7eformat11SubDetectorEthENS0_21default_call_policiesENS_3mpl7vector5IvS7_S9_thEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectN7eformat11SubDetectorEthENS0_21default_call_policiesENS_3mpl7vector5IvS4_S6_thEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectN7eformat11SubDetectorEthENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listIN7eformat11SubDetectorEtNS0_8optionalIhN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_EESB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_EEEESC_EENS3_4sizeISF_EENS0_7objects12value_holderINS7_6helper16SourceIdentifierEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESW_EPT1_PT_PT0_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE32__cool__InvalidChannelRange_dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex12TypeTemplateEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex12TypeTemplateESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex12TypeTemplateESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex12TypeTemplateESaIS1_EE9push_backERKS1_ - } - { - expand_dynamic_string_token - Memcheck:Leak - fun:malloc - fun:expand_dynamic_string_token - fun:_dl_map_object - fun:dl_open_worker - fun:_dl_catch_error - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#ers::Issue*#(*)(ers::Context#const=)>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPFPN3ers5IssueERKNS4_7ContextEEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers5IssueERKNS2_7ContextEEESt10_Select1stISA_ESt4lessISsESaISA_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers5IssueERKNS2_7ContextEEESt10_Select1stISA_ESt4lessISsESaISA_EE14_M_create_nodeERKSA_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers5IssueERKNS2_7ContextEEESt10_Select1stISA_ESt4lessISsESaISA_EE9_M_insertEPSt18_Rb_tree_node_baseSI_RKSA_ - } - { - PyROOT::CreateExecutor(std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT18TClassMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - } - { - lpmpapb - Memcheck:Leak - fun:malloc - fun:lpmpapb - fun:lpmpali - fun:lpmloadpkg - fun:lfvLoadPkg - } - { - (anonymous#namespace)::CreateUIntConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE19CreateUIntConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13PropertyProxy3SetEP11TDataMember - fun:_ZN6PyROOT17PropertyProxy_NewINS_14TMemberAdapterEEEPNS_13PropertyProxyERKT_ - } - { - (anonymous#namespace)::CreateLongLongExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE22CreateLongLongExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPfSt6vectorIfSaIfEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_5write11ROBFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_5write11ROBFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS5_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_5write11ROBFragmentEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper8u32sliceERKS4_ENS5_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - (anonymous#namespace)::CreatePyObjectConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE23CreatePyObjectConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKS8_RKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS8_SA_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKS5_RKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS5_S7_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKS4_RKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS4_S6_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper8u32sliceENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFS4_RKS4_RKNS0_5sliceEENS5_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function=,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector3=,#unsigned#short>#>#>(boost::python::detail::caller=,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector3=,#unsigned#short>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRN7eformat11ROBFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbSB_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRN7eformat11ROBFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbS8_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFbRN7eformat11ROBFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbS8_tEEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_ERKT1_ - fun:_ZN5boost6python6detail14name_space_defIPFbRN7eformat11ROBFragmentIPKjEEtENS0_21default_call_policiesENS0_6class_IS7_NS0_5basesINS3_6HeaderIS6_EEN4mpl_5void_ESH_SH_SH_SH_SH_SH_SH_SH_EENS1_13not_specifiedESJ_EEEEvRT1_PKcT_RKSt4pairIPKNS1_7keywordEST_ERKT0_SO_PNS0_7objects10class_baseE - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_ - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_ - obj:/afs/cern.ch/atlas/software/builds/nightlies/devval/AtlasCore/rel_5/Database/AtlasSealCLHEP/i686-slc4-gcc34-dbg/libAtlasSealCLHEPDict.so - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorI15G__CintSlHandleE8allocateEjPKv - fun:_ZNSt12_Vector_baseI15G__CintSlHandleSaIS0_EE11_M_allocateEj - fun:_ZNSt6vectorI15G__CintSlHandleSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - fun:_ZNSt6vectorI15G__CintSlHandleSaIS0_EE9push_backERKS0_ - } - { - nlnvmal - Memcheck:Leak - fun:malloc - fun:nlnvmal - fun:nlnvgst - fun:nlnvpbi - fun:nlnvpds - } - { - PyROOT::MethodProxy::MethodInfo_t::MethodInfo_t() - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT11MethodProxy12MethodInfo_tC1Ev - fun:_ZN6PyROOT64_GLOBAL__N_bindings_pyroot_src_MethodProxy.cxx_17E02520_1BE785DB6mp_newEP11_typeobjectP7_objectS4_ - fun:_ZN6PyROOT15MethodProxy_NewERKSsRSt6vectorIPNS_10PyCallableESaIS4_EE - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>*,#std::vector#>,#std::allocator#>#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt6vectorIfSaIfEES3_IS5_SaIS5_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - G__make_ifunctable - Memcheck:Leak - fun:malloc - fun:G__make_ifunctable - fun:G__define_var - fun:G__exec_statement - fun:G__loadfile - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper12DetectorMaskEFvNS6_11SubDetectorEENS0_21default_call_policiesENS_3mpl7vector3IvRS8_S9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper12DetectorMaskEFvNS3_11SubDetectorEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_S6_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper12DetectorMaskEFvNS2_11SubDetectorEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_S5_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvNS2_11SubDetectorEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SE_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector11,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector11,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsSsjSsSsSsjENS0_21default_call_policiesENS_3mpl8vector11IvS7_SsjSsSsjSsSsSsjEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsSsjSsSsSsjENS0_21default_call_policiesENS_3mpl8vector11IvS4_SsjSsSsjSsSsSsjEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsSsjSsSsSsjENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjSsSsjSsNS0_8optionalISsSsjSsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl9EEENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat17FullEventFragmentIPKjEEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat17FullEventFragmentIPKjEEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat17FullEventFragmentIPKjEEKFhvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IhRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_MS6_KFhvENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SN_T0_RKT1_z - } - { - boost::python::handle<_object>#boost::python::objects::make_function_handle(boost::python::tuple#(*)(boost::python::api::object)) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects20make_function_handleIPFNS0_5tupleENS0_3api6objectEEEENS0_6handleI7_objectEET_ - fun:_ZN5boost6python3api23object_base_initializerIPFNS0_5tupleENS1_6objectEEEEP7_objectRKT_ - fun:_ZN5boost6python29make_instance_reduce_functionEv - fun:_ZN5boost6python7objects41_GLOBAL__N__ZN5boost6python7self_ns4selfE9new_classEPKcjPKNS0_9type_infoES4_ - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector10,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector10,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsENS0_21default_call_policiesENS_3mpl8vector10IvRS7_SsjSsSsjSsSsSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsENS0_21default_call_policiesENS_3mpl8vector10IvRS4_SsjSsSsjSsSsSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl8vector10IvRS3_SsjSsSsjSsSsSsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvSsjSsSsjSsSsSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - PyInterpreterState_New - Memcheck:Leak - fun:malloc - fun:PyInterpreterState_New - fun:Py_InitializeEx - fun:Py_Initialize - fun:Py_Main - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E479917__CaloEMFrac_dictEv - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E4799103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E479912DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - TCint::CreateListOfMethods(TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint19CreateListOfMethodsEP6TClass - fun:_ZN6TClass16GetListOfMethodsEv - fun:_ZNK6PyROOT13TScopeAdapter18FunctionMemberSizeEv - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - } - { - PyThread_allocate_lock - Memcheck:Leak - fun:malloc - fun:PyThread_allocate_lock - fun:PyThread_create_key - fun:_PyGILState_Init - fun:Py_InitializeEx - } - { - Reflex::FunctionMemberTemplateInstance::FunctionMemberTemplateInstance(char#const*,#Reflex::Type#const=,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#int,#Reflex::Scope#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - TGenCollectionProxy::InitializeEx() - Memcheck:Leak - fun:_Znwj - fun:_ZN19TGenCollectionProxy12InitializeExEv - fun:_ZNK19TGenCollectionProxy10InitializeEv - fun:_ZN19TGenCollectionProxy13GetValueClassEv - fun:_ZN14TBuildRealData7InspectEP6TClassPKcS3_PKv - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKSt9type_infoN2SG16BaseInfoBaseImpl4infoEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_N2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_N2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_N2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_ - } - { - lpmpali - Memcheck:Leak - fun:malloc - fun:lpmpali - fun:lpmloadpkg - fun:lfvLoadPkg - fun:lfvSetShlMode - } - { - TStringRef::GetRep(int,#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TString7ReplaceEiiPKci - fun:_ZN7TStringaSEPKc - fun:_ZN6TNamed7SetNameEPKc - } - { - TCollectionProxyFactory::GenExplicitClassStreamer(ROOT::TCollectionProxyInfo#const=,#TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN23TCollectionProxyFactory24GenExplicitClassStreamerERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN4pool11createClassEN6Reflex4TypeEPN4ROOT17TGenericClassInfoE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo15Stub_DictionaryEPv - obj:* - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERKNS6_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERKNS3_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERKNS2_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_6helper7u32listEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_4listERKN7eformat6helper8u32sliceERKNS0_5sliceEENS0_21default_call_policiesENS_3mpl7vector3IS6_SB_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_4listERKN7eformat6helper8u32sliceERKNS0_5sliceEENS0_21default_call_policiesENS_3mpl7vector3IS3_S8_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_4listERKN7eformat6helper8u32sliceERKNS0_5sliceEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS2_S7_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper8u32sliceENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS0_4listERKS4_RKNS0_5sliceEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SJ_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEFvRKS8_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS8_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEFvRKS5_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS5_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEFvRKS4_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_S6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvRKS4_ENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERKNS6_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERKNS3_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERKNS2_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_6helper8u32sliceEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#_object*>#>#>(boost::python::detail::caller#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS9_EEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IvSC_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS6_EEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IvS9_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS5_EEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS8_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFvRS7_P7_objectENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN4ROOT6Cintex13StubContext_tEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN4ROOT6Cintex13StubContext_tESaIS3_EE11_M_allocateEj - fun:_ZNSt6vectorIPN4ROOT6Cintex13StubContext_tESaIS3_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS3_S5_EERKS3_ - fun:_ZNSt6vectorIPN4ROOT6Cintex13StubContext_tESaIS3_EE9push_backERKS3_ - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>,#std::_Rb_tree_iterator#>#>,#boost::_bi::protected_bind_t#>#>,#std::_Rb_tree_iterator#>#>#(*)(std::map,#std::less,#std::allocator#>#>#>=),#boost::_bi::list1#(*)()>#>#>,#boost::_bi::protected_bind_t#>#>,#std::_Rb_tree_iterator#>#>#(*)(std::map,#std::less,#std::allocator#>#>#>=),#boost::_bi::list1#(*)()>#>#>,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>#>,#boost::python::default_call_policies,#boost::mpl::vector2,#std::_Rb_tree_iterator#>#>#>,#boost::python::back_reference,#std::less,#std::allocator#>#>#>=>#>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>,#std::_Rb_tree_iterator#>#>,#boost::_bi::protected_bind_t#>#>,#std::_Rb_tree_iterator#>#>#(*)(std::map,#std::less,#std::allocator#>#>#>=),#boost::_bi::list1#(*)()>#>#>,#boost::_bi::protected_bind_t#>#>,#std::_Rb_tree_iterator#>#>#(*)(std::map,#std::less,#std::allocator#>#>#>=),#boost::_bi::list1#(*)()>#>#>,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>#>,#boost::python::default_call_policies,#boost::mpl::vector2,#std::_Rb_tree_iterator#>#>#>,#boost::python::back_reference,#std::less,#std::allocator#>#>#>=>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS1_6detail8py_iter_ISt3mapIN7eformat6helper16SourceIdentifierENS9_11ROBFragmentIPKjEESt4lessISB_ESaISt4pairIKSB_SF_EEESt17_Rb_tree_iteratorISK_ENS_3_bi16protected_bind_tINSP_6bind_tISO_PFSO_RSM_ENSP_5list1IPFNS_3argILi1EEEvEEEEEEES12_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEES14_NS_3mpl7vector2INS1_14iterator_rangeIS15_SO_EENS0_14back_referenceISS_EEEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS0_7objects6detail8py_iter_ISt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEESt17_Rb_tree_iteratorISI_ENS_3_bi16protected_bind_tINSN_6bind_tISM_PFSM_RSK_ENSN_5list1IPFNS_3argILi1EEEvEEEEEEES10_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEES12_NS_3mpl7vector2INS3_14iterator_rangeIS13_SM_EENS0_14back_referenceISQ_EEEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS0_7objects6detail8py_iter_ISt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEESt17_Rb_tree_iteratorISI_ENS_3_bi16protected_bind_tINSN_6bind_tISM_PFSM_RSK_ENSN_5list1IPFNS_3argILi1EEEvEEEEEEES10_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEES12_NS_3mpl7vector2INS3_14iterator_rangeIS13_SM_EENS0_14back_referenceISQ_EEEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_7objects6detail8py_iter_ISt3mapIN7eformat6helper16SourceIdentifierENS6_11ROBFragmentIPKjEESt4lessIS8_ESaISt4pairIKS8_SC_EEESt17_Rb_tree_iteratorISH_ENS_3_bi16protected_bind_tINSM_6bind_tISL_PFSL_RSJ_ENSM_5list1IPFNS_3argILi1EEEvEEEEEEESZ_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEES11_NS_3mpl7vector2INS2_14iterator_rangeIS12_SL_EENS0_14back_referenceISP_EEEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - Reflex::FunctionBuilder::FunctionBuilder(Reflex::Type#const=,#char#const*,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#char) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN29CaloClusterMomentContainer_p115ClusterMoment_pESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - (anonymous#namespace)::CreateSTLStringExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE23CreateSTLStringExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiHistos_GaudiAlgorithm__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node,#std::allocator#>#const*#const,#Reflex::Scope>#>*>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPNS_15_Hashtable_nodeISt4pairIKPKSsN6Reflex5ScopeEEEEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsN6Reflex5ScopeEEEESaISA_EE11_M_allocateEj - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsN6Reflex5ScopeEEEESaISA_EE20_M_allocate_and_copyIPSA_EESE_jT_SF_ - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsN6Reflex5ScopeEEEESaISA_EE7reserveEj - } - { - nngsini_init_streams - Memcheck:Leak - fun:calloc - fun:nngsini_init_streams - fun:nncpcin_maybe_init - fun:nnfgiinit - fun:nnfgauto - } - { - ers::StreamManager::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers13StreamManager8instanceEv - fun:_ZN3ers16SingletonCreatorINS_13StreamManagerEEC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN53_GLOBAL__N_.._src_StreamManager.cxx_9D2164D3_3CA30E1520ers_NoValue_instanceE - } - { - (anonymous#namespace)::CreateSTLStringConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE24CreateSTLStringConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat5write17FullEventFragmentEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESM_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat5write17FullEventFragmentEEENS3_4sizeISA_EENS0_7objects12value_holderIS7_EENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper6StatusEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper6StatusEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper6StatusEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper6StatusENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - PyROOT::CreateConverter(std::basic_string,#std::allocator#>#const=,#long) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13PropertyProxy3SetEP11TDataMember - fun:_ZN6PyROOT17PropertyProxy_NewINS_14TMemberAdapterEEEPNS_13PropertyProxyERKT_ - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - } - { - TCint::CreateListOfMethodArgs(TFunction*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint22CreateListOfMethodArgsEP9TFunction - fun:_ZN9TFunction19GetListOfMethodArgsEv - fun:_ZNK6PyROOT14TMemberAdapter19FunctionParameterAtEj - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - } - { - boost::python::objects::function_handle_impl(boost::python::objects::py_function#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects20function_handle_implERKNS1_11py_functionE - fun:_ZN5boost6python7objects20make_function_handleIPFNS0_5tupleENS0_3api6objectEEEENS0_6handleI7_objectEET_ - fun:_ZN5boost6python3api23object_base_initializerIPFNS0_5tupleENS1_6objectEEEEP7_objectRKT_ - fun:_ZN5boost6python29make_instance_reduce_functionEv - } - { - Reflex::PropertyListImpl::AddProperty(unsigned#int,#Reflex::Any#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - fun:_ZN6Reflex16PropertyListImpl11AddPropertyERKSsRKNS_3AnyE - fun:_ZN6Reflex16PropertyListImpl11AddPropertyERKSsPKc - fun:_ZNK6Reflex12PropertyList11AddPropertyERKSsPKc - } - { - G__store_dictposition - Memcheck:Leak - fun:malloc - fun:G__store_dictposition - fun:G__register_sharedlib - fun:G__RegisterLibrary - fun:G__add_setup_func - } - { - G__params::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__memfunc_setup_imp - fun:G__memfunc_setup - fun:G__usermemfunc_setup - } - { - _dl_map_object_from_fd - Memcheck:Leak - fun:malloc - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error - } - { - boost::python::objects::py_function::py_function#>=>,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=>,#_object*>#>#>(boost::python::detail::caller#>=>,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=>,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_3api6objectENS0_14back_referenceIRSt6vectorIN7eformat6helper9StreamTagESaISC_EEEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IS7_SG_SI_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_3api6objectENS0_14back_referenceIRSt6vectorIN7eformat6helper9StreamTagESaIS9_EEEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IS4_SD_SF_EEN4mpl_4int_ILi0EEEEES4_T_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_3api6objectENS0_14back_referenceIRSt6vectorIN7eformat6helper9StreamTagESaIS8_EEEEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS3_SC_SE_EEEES3_T_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFNS0_3api6objectENS0_14back_referenceIRS7_EEP7_objectENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SN_T0_RKT1_z - } - { - TCint::CreateListOfBaseClasses(TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint23CreateListOfBaseClassesEP6TClass - fun:_ZN6TClass14GetListOfBasesEv - fun:_ZN6TClass12GetBaseClassEPKS_ - fun:_ZNK6TClass12InheritsFromEPKS_ - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex3AnyEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex3AnyESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex3AnyESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_ - fun:_ZNSt6vectorIN6Reflex3AnyESaIS1_EE6insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_ - } - { - Reflex::PointerBuilder(Reflex::Type#const=,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex14PointerBuilderERKNS_4TypeERKSt9type_info - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN91_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_LArTools_LArToolsDict_gen_rflx.cpp_9D2164D3_C1DA6BFE4nsb0E - obj:/afs/cern.ch/atlas/software/builds/nightlies/devval/AtlasConditions/rel_5/LArCalorimeter/LArTools/i686-slc4-gcc34-dbg/libLArToolsDict.so - } - { - PyStructSequence_InitType - Memcheck:Leak - fun:malloc - fun:PyStructSequence_InitType - fun:initposix - fun:init_builtin - fun:load_module - } - { - TGuiFactory::CreateApplicationImp(char#const*,#int*,#char**) - Memcheck:Leak - fun:_Znwj - fun:_ZN11TGuiFactory20CreateApplicationImpEPKcPiPPc - fun:_ZN12TApplication18InitializeGraphicsEv - fun:_ZN12TApplicationC2EPKcPiPPcPvi - fun:_ZN6PyROOT18TPyROOTApplicationC1EPKcPiPPcb - } - { - G__tagtable_setup - Memcheck:Leak - fun:_Znwj - fun:G__tagtable_setup - fun:G__cpp_setup_tagtableG__stream - fun:G__cpp_setupG__stream - fun:G__pragma - } - { - slpmadp - Memcheck:Leak - fun:malloc - fun:slpmadp - fun:lpmapd - fun:lfvLoadPkg - fun:lfvSetShlMode - } - { - Reflex::MemberBase::MemberBase(char#const*,#Reflex::Type#const=,#Reflex::TYPE,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex14FunctionMemberC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jNS_4TYPEE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN55_GLOBAL__N_.._src_AlgErrorAuditor.cpp_9D2164D3_171EDA8522AlgErrorAuditor_dict12C1Ev - } - { - Reflex::ArrayBuilder(Reflex::Type#const=,#unsigned#int,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex12ArrayBuilderERKNS_4TypeEjRKSt9type_info - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_ - obj:/afs/cern.ch/atlas/software/builds/nightlies/devval/AtlasCore/rel_5/Database/AtlasSealCLHEP/i686-slc4-gcc34-dbg/libAtlasSealCLHEPDict.so - } - { - sltsmxi - Memcheck:Leak - fun:malloc - fun:sltsmxi - fun:lwemmxi - fun:lwemist - fun:lpminitm - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7u32listEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7u32listEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7u32listEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7u32listENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::FunctionBuilder::FunctionBuilder(Reflex::Type#const=,#char#const*,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#char) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN61_GLOBAL__N_.._src_ToyNextPassFilterTool.cxx_EF105EC1_6DFCE1AD27ToyNextPassFilterTool_dict5C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN61_GLOBAL__N_.._src_ToyNextPassFilterTool.cxx_EF105EC1_6DFCE1AD29s_ToyNextPassFilterTool_dict5E - } - { - boost::python::objects::py_function::py_function=),#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller=),#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbSB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbS8_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFbRN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IbS8_EEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_ERKT1_ - fun:_ZN5boost6python6detail14name_space_defIPFbRN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS0_6class_IS7_NS0_5basesINS3_6HeaderIS6_EEN4mpl_5void_ESH_SH_SH_SH_SH_SH_SH_SH_EENS1_13not_specifiedESJ_EEEEvRT1_PKcT_RKSt4pairIPKNS1_7keywordEST_ERKT0_SO_PNS0_7objects10class_baseE - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_6helper8u32sliceERKS6_ENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SR_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEKFhvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IhRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFhvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorINS_3Fit17ParameterSettingsESaIS5_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorINS_3Fit17ParameterSettingsESaIS2_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPKNS_3Fit11DataOptionsE - } - { - TBits::TBits(unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN5TBitsC1Ej - fun:_ZN12TProcessUUIDC1Ev - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorINS_15_Hashtable_nodeISt4pairIKPKcPN6Reflex8TypeNameEEEEE8allocateEjPKv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKcPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE11_M_get_nodeEv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKcPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE11_M_new_nodeERKS8_ - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKcPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE14find_or_insertERKS8_ - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN6Reflex9ICallbackEEE8allocateEjPKv - fun:_ZNSt10_List_baseIPN6Reflex9ICallbackESaIS2_EE11_M_get_nodeEv - fun:_ZNSt4listIPN6Reflex9ICallbackESaIS2_EE14_M_create_nodeERKS2_ - fun:_ZNSt4listIPN6Reflex9ICallbackESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2_ - } - { - G__add_setup_func - Memcheck:Leak - fun:realloc - fun:G__add_setup_func - fun:_ZN23G__cpp_setup_initG__NetC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK8TMessage - } - { - G__createtemplatefunc - Memcheck:Leak - fun:malloc - fun:G__createtemplatefunc - fun:G__declare_template - fun:G__exec_statement - fun:G__loadfile - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIhSaIhEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIhSaIhEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex5ClassC1EPKcjRKSt9type_infojNS_4TYPEE - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex13ClassBuilderTIN4ROOT6Cintex6CintexEEC1EPKcjNS_4TYPEE - } - { - boost::python::objects::function_object(boost::python::objects::py_function#const=,#std::pair#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects15function_objectERKNS1_11py_functionERKSt4pairIPKNS0_6detail7keywordES9_E - fun:_ZN5boost6python7objects15function_objectERKNS1_11py_functionE - fun:_ZN5boost6python6detail17make_function_auxINS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISC_SaISC_EEEEE4nextES7_NS_3mpl7vector2IRSC_RSI_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISC_SaISC_EEEEE4nextES7_NS_3mpl7vector2IRSC_RSI_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - } - { - kpu8lgn - Memcheck:Cond - fun:kzsrepw - fun:kpu8lgn - fun:kpuauthxa - fun:kpuauth - fun:OCISessionBegin - } - { - lempint - Memcheck:Leak - fun:calloc - fun:lempint - fun:lemrist - fun:lpminitm - fun:lpminit - } - { - slpmadp - Memcheck:Leak - fun:malloc - fun:slpmadp - fun:slpmini - fun:lpmrist - fun:lpminitm - } - { - _dl_lookup_symbol_x - Memcheck:Leak - fun:realloc - fun:_dl_lookup_symbol_x - fun:fixup - fun:_dl_runtime_resolve - fun:_ZN5coral12OracleAccess5QueryC1ERKNS0_18ISessionPropertiesE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERKS8_RKNS6_8CheckSumEENS0_21default_call_policiesENS_3mpl7vector3IS8_SA_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumEENS0_21default_call_policiesENS_3mpl7vector3IS5_S7_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESN_E - fun:_ZN5boost6python6detail14name_space_defIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumEENS0_21default_call_policiesEEEvRNS0_3api6objectEPKcT_RKSt4pairIPKNS1_7keywordESN_ERKT0_SI_z - } - { - ntgbuini - Memcheck:Leak - fun:calloc - fun:ntgbuini - fun:nsgblini - fun:nngsini_init_streams - fun:nncpcin_maybe_init - } - { - Reflex::Environ::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironISt13_Bit_iteratorE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - nsgblini - Memcheck:Leak - fun:malloc - fun:nsgblini - fun:nngsini_init_streams - fun:nncpcin_maybe_init - fun:nnfgiinit - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEFbvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IbRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_FbvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SG_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS8_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS5_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEFvjENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvjENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - TCint::SetClassInfo(TClass*,#bool) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint12SetClassInfoEP6TClassb - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_iib - fun:_ZN6TClassC1EPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_iib - fun:_ZN4ROOT11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A27__std__list_IServicep__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - G__loadfile_tmpfile - Memcheck:Leak - fun:malloc - fun:G__loadfile_tmpfile - fun:G__load_text - fun:_ZNK5TCint8LoadTextEPKc - fun:_ZN8TQObject13LoadRQ_OBJECTEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFbvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IbRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FbvENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorI7TStringSaIS4_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorI7TStringSaIS1_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK21SetWindowAttributes_t - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERNS6_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERNS3_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERNS2_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper8u32sliceEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - ExpatCoreParser::do_start(char#const*,#char#const**) - Memcheck:Leak - fun:_Znwj - fun:_ZN15ExpatCoreParser8do_startEPKcPS1_ - fun:_ZN15ExpatCoreParser5startEPvPKcPS2_ - fun:doContent - fun:externalEntityContentProcessor - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiPython__HistoDecorator_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - fdopen@@GLIBC_2.1 - Memcheck:Leak - fun:malloc - fun:fdopen@@GLIBC_2.1 - fun:posix_fdopen - fun:PyCFunction_Call - fun:PyEval_EvalFrameEx - } - { - Property*#PropertyMgr::declareProperty,#std::allocator#>#>(std::basic_string,#std::allocator#>#const=,#std::basic_string,#std::allocator#>=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISsEEP8PropertyRKSsRT_S4_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper12DetectorMaskEKFbNS6_11SubDetectorEENS0_21default_call_policiesENS_3mpl7vector3IbRS8_S9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper12DetectorMaskEKFbNS3_11SubDetectorEENS0_21default_call_policiesENS_3mpl7vector3IbRS5_S6_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper12DetectorMaskEKFbNS2_11SubDetectorEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IbRS4_S5_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFbNS2_11SubDetectorEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SE_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERNS6_6helper16SourceIdentifierEENS0_21default_call_policiesENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERNS3_6helper16SourceIdentifierEENS0_21default_call_policiesENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERNS2_6helper16SourceIdentifierEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper16SourceIdentifierEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SH_T0_RKT1_z - } - { - Service::Service(std::basic_string,#std::allocator#>#const=,#ISvcLocator*) - Memcheck:Leak - fun:_Znwj - fun:_ZN7ServiceC2ERKSsP11ISvcLocator - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_E48091907FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN12LArOnOffId_P14LArOnOffId_P_tESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - Reflex::MemberBase::MemberBase(char#const*,#Reflex::Type#const=,#Reflex::TYPE,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex14FunctionMemberC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jNS_4TYPEE - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZN6Reflex13ClassBuilderTIN4ROOT6Cintex6CintexEE17AddFunctionMemberERKNS_4TypeEPKcPFvPvSA_RKSt6vectorISA_SaISA_EESA_ESA_S9_j - } - { - Cint::G__ClassInfo::CheckValidRootInfo() - Memcheck:Leak - fun:malloc - fun:_ZN4Cint12G__ClassInfo18CheckValidRootInfoEv - fun:_ZN4Cint12G__ClassInfo10SetVersionEi - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo19Default_CreateClassEN6Reflex4TypeEPNS_17TGenericClassInfoE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo15Stub_DictionaryEPv - } - { - ztvo5pe - Memcheck:Value4 - fun:ztucbtx - fun:ztvo5pe - fun:kzsrepw - fun:kpu8lgn - fun:kpuauthxa - } - { - Reflex::Any::Holder::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderI11ConverterIDE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZN6Reflex3AnyaSERKS0_ - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN6Reflex4TypeEPN4ROOT6Cintex16CINTClassBuilderEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIN6Reflex4TypeESt4pairIKS1_PN4ROOT6Cintex16CINTClassBuilderEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIN6Reflex4TypeESt4pairIKS1_PN4ROOT6Cintex16CINTClassBuilderEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeIN6Reflex4TypeESt4pairIKS1_PN4ROOT6Cintex16CINTClassBuilderEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_ - } - { - TCint::UpdateListOfGlobals() - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint19UpdateListOfGlobalsEv - fun:_ZN5TROOT16GetListOfGlobalsEb - fun:_ZN11TDataMemberC1EPvP6TClass - fun:_ZN5TCint23CreateListOfDataMembersEP6TClass - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEFNS6_7DRErrorEvENS0_21default_call_policiesENS_3mpl7vector2IS8_RS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEFNS3_7DRErrorEvENS0_21default_call_policiesENS_3mpl7vector2IS5_RS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEFNS2_7DRErrorEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_RS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_FNS2_7DRErrorEvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SH_T0_RKT1_z - } - { - Property*#PropertyMgr::declareProperty(std::basic_string,#std::allocator#>#const=,#bool=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIbEEP8PropertyRKSsRT_S4_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - lpmrist - Memcheck:Leak - fun:malloc - fun:lpmrist - fun:lpminitm - fun:lpminit - fun:LhtIntCreate - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat6helper8u32sliceEEENS3_4sizeISA_EENS0_7objects14pointer_holderINS_10shared_ptrINS5_17FullEventFragmentIPKjEEEESJ_EENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESX_EPT1_PT_PT0_ - } - { - std::vector#>#>#>,#boost::property#>#>,#std::allocator#>#>#>,#boost::property#>#>#>#>::vector(std::vector#>#>#>,#boost::property#>#>,#std::allocator#>#>#>,#boost::property#>#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSt6vectorIN5boost6detail4sei_IjSt14_List_iteratorINS0_9list_edgeIjNS0_8propertyINS0_12edge_index_tEjNS5_INS0_67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11edge_cast_tEPFPvS9_ENS0_11no_propertyEEEEEEEESE_EESaISH_EEC1ERKSJ_ - fun:_ZNSt6vectorIN5boost6detail12adj_list_genINS0_14adjacency_listINS0_4vecSES4_NS0_14bidirectionalSENS0_11no_propertyENS0_8propertyINS0_12edge_index_tEjNS7_INS0_67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11edge_cast_tEPFPvSB_ES6_EEEES6_NS0_5listSEEES4_S4_S5_S6_SF_S6_SG_E6config13stored_vertexESaISK_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSK_SM_EEjRKSK_ - fun:_ZN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11demand_typeENS_6python9type_infoE - fun:_ZN5boost6python7objects23register_dynamic_id_auxENS0_9type_infoEPFSt4pairIPvS2_ES4_E - } - { - __fopen_internal - Memcheck:Leak - fun:malloc - fun:__fopen_internal - fun:fopen64 - fun:open_the_file - fun:file_init - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmSsEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeImSt4pairIKmSsESt10_Select1stIS2_ESt4lessImESaIS2_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeImSt4pairIKmSsESt10_Select1stIS2_ESt4lessImESaIS2_EE14_M_create_nodeERKS2_ - fun:_ZNSt8_Rb_treeImSt4pairIKmSsESt10_Select1stIS2_ESt4lessImESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ - } - { - JobOptionsSvc::addPropertyToCatalogue(std::basic_string,#std::allocator#>#const=,#Property#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7811method_5581EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - obj:* - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERNS6_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERNS3_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERNS2_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper7u32listEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - PyThread_allocate_lock - Memcheck:Leak - fun:malloc - fun:PyThread_allocate_lock - fun:PyInterpreterState_New - fun:Py_InitializeEx - fun:Py_Initialize - } - { - sltsini - Memcheck:Leak - fun:malloc - fun:sltsini - fun:slxmxinit - fun:lxzinit - fun:lpminitm - } - { - Reflex::Any::Holder::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderIPKcE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZN6Reflex3AnyaSERKS0_ - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - } - { - boost::python::detail::register_exception_handler(boost::function2#const=>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python6detail26register_exception_handlerERKNS_9function2IbRKNS1_17exception_handlerERKNS_9function0IvEEEE - fun:_ZN5boost6python29register_exception_translatorISt11range_errorPFvRKS2_EEEvT0_PNS_4typeIT_EE - fun:_Z30init_module_libpyevent_storagev - fun:_ZN5boost6detail8function26void_function_ref_invoker0IPFvvEvE6invokeERNS1_15function_bufferE - } - { - Reflex::Any::Holder,#std::allocator#>#>::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderISsE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZSt10_ConstructIN6Reflex3AnyES1_EvPT_RKT0_ - fun:_ZSt24__uninitialized_copy_auxIN9__gnu_cxx17__normal_iteratorIPN6Reflex3AnyESt6vectorIS3_SaIS3_EEEES8_ET0_T_SA_S9_12__false_type - } - { - G__register_sharedlib - Memcheck:Leak - fun:malloc - fun:G__register_sharedlib - fun:G__RegisterLibrary - fun:G__add_setup_func - fun:_ZN29G__cpp_setup_initG__MetaUtilsC1Ev - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528132Declare_additional_CINT_typedefsEv - } - { - TCint::FindSpecialObject(char#const*,#Cint::G__ClassInfo*,#void**,#void**) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint17FindSpecialObjectEPKcPN4Cint12G__ClassInfoEPPvS6_ - fun:TCint_FindSpecialObject - fun:G__APIGetSpecialObject_layer1 - fun:G__getvariable - } - { - Reflex::PropertyListImpl::AddProperty(unsigned#int,#Reflex::Any#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - fun:_ZN6Reflex16PropertyListImpl11AddPropertyERKSsRKNS_3AnyE - fun:_ZNK6Reflex12PropertyList11AddPropertyERKSsRKNS_3AnyE - fun:_ZN6Reflex15FunctionBuilder11AddPropertyEPKcNS_3AnyE - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7TypedefC1EPKcRKNS_4TypeENS_4TYPEES5_ - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERKNS_4TypeEPKc - fun:_ZN6Reflex12ClassBuilder10AddTypedefERKNS_4TypeEPKc - } - { - boost::python::objects::py_function::py_function,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector4,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector4,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvjSsENS0_21default_call_policiesENS_3mpl7vector4IvRS7_jSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvjSsENS0_21default_call_policiesENS_3mpl7vector4IvRS4_jSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvjSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector4IvRS3_jSsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvjSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - PyList_Append - Memcheck:Leak - fun:realloc - fun:PyList_Append - fun:PyType_Ready - fun:_PyExc_Init - fun:Py_InitializeEx - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_ - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo5SetupEv - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer5SetupEv - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record>#>#>(boost::python::detail::caller,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsSsN12EventStorage21run_parameters_recordEENS0_21default_call_policiesENS_3mpl7vector5IvS7_SsSsS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsSsN12EventStorage21run_parameters_recordEENS0_21default_call_policiesENS_3mpl7vector5IvS4_SsSsS6_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsSsN12EventStorage21run_parameters_recordEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector3IKSsS5_KN12EventStorage21run_parameters_recordEEENS3_4sizeIS9_EENS0_7objects12value_holderINS6_10DataWriterEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - kpufprow - Memcheck:Overlap - fun:_intel_fast_memcpy - fun:kpufprow - fun:kpufch0 - fun:kpufch - fun:OCIStmtFetch2 - } - { - ROOT::Cintex::Cintex::Cintex() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex6CintexC1Ev - fun:_ZN4ROOT6Cintex6Cintex8InstanceEv - fun:_ZN4ROOT6Cintex6Cintex5DebugEv - fun:_ZN4ROOT6Cintex16CINTClassBuilder5SetupEv - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#int>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsiEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE14_M_create_nodeERKS2_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ - } - { - __static_initialization_and_destruction_0(int,#int) - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gCINTMutex - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libCore.so - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A4nsb0E - obj:/afs/cern.ch/atlas/offline/external/GAUDI/v20r4p4-LCG56c/GaudiPython/i686-slc4-gcc34-dbg/libGaudiPythonDict.so - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiPython__HistoDecorator_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A29__Gaudi__IDataConnection_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIPvSaIS4_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIPvSaIS1_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - realloc - Memcheck:Leak - fun:malloc - fun:realloc - fun:PyList_Append - fun:PyType_Ready - fun:_Py_ReadyTypes - } - { - Reflex::EnumTypeBuilder(char#const*,#char#const*,#std::type_info#const=,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15EnumTypeBuilderEPKcS1_RKSt9type_infoj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A4nsb0E - obj:/afs/cern.ch/atlas/offline/external/GAUDI/v20r4p4-LCG56c/GaudiPython/i686-slc4-gcc34-dbg/libGaudiPythonDict.so - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP9TileL2_p1St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(EventStorage::DataReader::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#EventStorage::DataReader=>#>#>(boost::python::detail::caller,#std::allocator#>#(EventStorage::DataReader::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#EventStorage::DataReader=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEKFSsvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ISsRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_KFSsvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SG_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN22IOVPayloadContainer_p120CondAttrListEntry_p1ESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPsSt6vectorIsSaIsEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - ers::LocalStream::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers11LocalStream8instanceEv - fun:_ZN3ers16SingletonCreatorINS_11LocalStreamEEC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN51_GLOBAL__N_.._src_LocalStream.cxx_17E02520_744823F320ers_NoValue_instanceE - } - { - boost::python::objects::py_function::py_function#(*)(boost::python::list#const=),#boost::python::detail::constructor_policy,#boost::mpl::vector2,#boost::python::list#const=>#>,#boost::mpl::v_item,#boost::python::list#const=>,#1>,#1>,#1>#>(boost::python::detail::caller#(*)(boost::python::list#const=),#boost::python::detail::constructor_policy,#boost::mpl::vector2,#boost::python::list#const=>#>#const=,#boost::mpl::v_item,#boost::python::list#const=>,#1>,#1>,#1>) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS_10shared_ptrIN7eformat6helper7u32listEEERKNS0_4listEENS4_18constructor_policyINS0_21default_call_policiesEEENS_3mpl7vector2ISA_SD_EEEENSJ_6v_itemIvNSN_INS0_3api6objectENSJ_6v_maskISL_Li1EEELi1EEELi1EEEEERKT_T0_ - fun:_ZN5boost6python6detail20make_constructor_auxIPFNS_10shared_ptrIN7eformat6helper7u32listEEERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector2IS7_SA_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python16make_constructorIPFNS_10shared_ptrIN7eformat6helper7u32listEEERKNS0_4listEEEENS0_3api6objectET_ - fun:_Z24init_module_libpyeformatv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvvENS0_21default_call_policiesENS_3mpl7vector2IvRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvvENS0_21default_call_policiesENS_3mpl7vector2IvRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IvRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvvENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - PyROOT::CreateConverter(std::basic_string,#std::allocator#>#const=,#long) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT18TClassMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP10LArDAC2uAPSt6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat6helper8u32sliceEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESM_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat6helper8u32sliceEEENS3_4sizeISA_EENS0_7objects12value_holderIS7_EENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFvSsENS0_21default_call_policiesENS_3mpl7vector3IvRS7_SsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFvSsENS0_21default_call_policiesENS_3mpl7vector3IvRS4_SsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFvSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS3_SsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FvSsENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SE_T0_RKT1_z - } - { - PyObject_Malloc - Memcheck:Leak - fun:realloc - fun:PyObject_Malloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyDict_New - } - { - TUnixSystem::Setenv(char#const*,#char#const*) - Memcheck:Leak - fun:_Znaj - fun:_ZN11TUnixSystem6SetenvEPKcS1_ - fun:_Z10SetRootSysv - fun:_ZN11TUnixSystem4InitEv - fun:_ZN5TROOT10InitSystemEv - } - { - slwmmgetmem - Memcheck:Leak - fun:calloc - fun:slwmmgetmem - fun:lmmrist - fun:lpminitm - fun:lpminit - } - { - boost::python::objects::py_function::py_function#(*)(eformat::write::FullEventFragment=,#unsigned#int),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::write::FullEventFragment=,#unsigned#int>#>#>(boost::python::detail::caller#(*)(eformat::write::FullEventFragment=,#unsigned#int),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::write::FullEventFragment=,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat11ROBFragmentIPKjEERNS6_5write17FullEventFragmentEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3ISA_SD_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat11ROBFragmentIPKjEERNS3_5write17FullEventFragmentEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS7_SA_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat11ROBFragmentIPKjEERNS2_5write17FullEventFragmentEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS6_S9_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_11ROBFragmentIPKjEERS4_jENS5_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - ztcedencbk - Memcheck:Value4 - fun:ztcedecb - fun:ztcedencbk - fun:ztceb_encblk - fun:ztceb_padding - fun:ztcebf - } - { - ztcebi - Memcheck:Value4 - fun:ztceai - fun:ztcebi - fun:ztcei - fun:ztvo5pe - fun:kzsrepw - } - { - Reflex::FunctionMemberTemplateInstance::FunctionMemberTemplateInstance(char#const*,#Reflex::Type#const=,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#int,#Reflex::Scope#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZN6Reflex12ClassBuilder17AddFunctionMemberERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_j - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A52__PropertyWithValue_std__vector_unsignedsint_s__dictEv - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFtRKN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2ItSC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFtRKN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2ItS9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFtRKN7eformat11ROBFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItS8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat11ROBFragmentIPKjEENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_EENS0_6detail13not_specifiedESE_E8def_implIS6_PFtRKS6_ENSD_10def_helperIPKcSE_SE_SE_EEEEvPT_SN_T0_RKT1_z - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex11OwnedMemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex11OwnedMemberESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex11OwnedMemberESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex11OwnedMemberESaIS1_EE9push_backERKS1_ - } - { - Reflex::Instance::Instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8InstanceC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6Reflex8InstanceC2Ev - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libReflex.so - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7818__Gaudi__Time_dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - int#PyROOT::BuildRootClassDict(PyROOT::TScopeAdapter#const=,#_object*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - fun:_ZN6PyROOT63_GLOBAL__N_bindings_pyroot_src_PyRootType.cxx_17E02520_E34D103311pt_getattroEP7_objectS2_ - fun:PyObject_GetAttr - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex9NamespaceC1EPKc - fun:_ZN6Reflex16NamespaceBuilderC1EPKc - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7820__IssueSeverity_dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectjjjjjjtjthENS0_21default_call_policiesENS_3mpl8vector12IvS7_jjjjjjtjthEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectjjjjjjtjthENS0_21default_call_policiesENS_3mpl8vector12IvS4_jjjjjjtjthEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectjjjjjjtjthENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl8vector10IjjjjjjtjthEENS3_4sizeIS5_EENS0_7objects12value_holderIN7eformat5write17FullEventFragmentEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESN_EPT1_PT_PT0_ - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#MessageSvc::msgAry>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN10MessageSvc6msgAryEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN10MessageSvc6msgAryEESt10_Select1stIS4_ESt4lessISsESaIS4_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN10MessageSvc6msgAryEESt10_Select1stIS4_ESt4lessISsESaIS4_EE14_M_create_nodeERKS4_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN10MessageSvc6msgAryEESt10_Select1stIS4_ESt4lessISsESaIS4_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS4_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_23__CLHEP__HepRep4x4_dictEv - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - RootUtils::PyROOTTTreePatch::Initialize(_object*,#_object*,#_object*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9RootUtils16PyROOTTTreePatch10InitializeEP7_objectS2_S2_ - fun:_ZN105_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_RootUtilsPyROOT_RootUtilsPyROOTDict_gen_rflx.cpp_17E02520_58D51C2312method_10024EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - obj:* - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node#>*>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPNS_15_Hashtable_nodeISt4pairIKPKcPN6Reflex8TypeNameEEEEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKcPN6Reflex8TypeNameEEEESaISB_EE11_M_allocateEj - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKcPN6Reflex8TypeNameEEEESaISB_EE20_M_allocate_and_copyIPSB_EESF_jT_SG_ - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKcPN6Reflex8TypeNameEEEESaISB_EE7reserveEj - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEKFPKNS7_17FullEventFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2ISB_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEKFPKNS4_17FullEventFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEKFPKNS3_17FullEventFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS7_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFPKNS3_17FullEventFragmentEvENS5_10def_helperINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFxvENS0_21default_call_policiesENS_3mpl7vector2IxRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFxvENS0_21default_call_policiesENS_3mpl7vector2IxRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFxvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IxRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FxvENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SE_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - (anonymous#namespace)::Factory,#std::allocator#>,#ISvcLocator*)>::Func(void*,#void*,#std::vector#>#const=,#void*) - Memcheck:Leak - fun:_Znwj - fun:_ZN57_GLOBAL__N_.._src_AlgContextAuditor.cpp_9D2164D3_FD9AFCFD7FactoryI17AlgContextAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeIPvEEvRKNS_6ObjectERT_RKSt6vectorIS2_SaIS2_EE - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP12EventType_p1St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex5ClassC2EPKcjRKSt9type_infojNS_4TYPEE - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - ntpaini - Memcheck:Leak - fun:malloc - fun:ntpaini - fun:ntgblini - fun:nsgblini - fun:nngsini_init_streams - } - { - SimpleProperty#>::SimpleProperty(BoundedVerifier) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIb15BoundedVerifierIbEEC1ES1_ - fun:_ZN15AlgErrorAuditorC1ERKSsP11ISvcLocator - fun:_ZN55_GLOBAL__N_.._src_AlgErrorAuditor.cpp_9D2164D3_171EDA857FactoryI15AlgErrorAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - Auditor::Auditor(std::basic_string,#std::allocator#>#const=,#ISvcLocator*) - Memcheck:Leak - fun:_Znwj - fun:_ZN7AuditorC2ERKSsP11ISvcLocator - fun:_ZN17AlgContextAuditorC1ERKSsP11ISvcLocator - fun:_ZN57_GLOBAL__N_.._src_AlgContextAuditor.cpp_9D2164D3_FD9AFCFD7FactoryI17AlgContextAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - nlpagtkeys - Memcheck:Leak - fun:malloc - fun:nlpagtkeys - fun:nlpaparse - fun:nlpardfile - fun:nlpains - } - { - lpmpali - Memcheck:Leak - fun:malloc - fun:lpmpali - fun:lpmloadpkg - fun:kpubalts - fun:kpu8lgn - } - { - ztcebi - Memcheck:Value4 - fun:ztceai - fun:ztcebi - fun:ztcei - fun:ztcedec - fun:ztvo5ed - } - { - TUnixSystem::UnixSignal(ESignals,#void#(*)(ESignals)) - Memcheck:Leak - fun:_Znwj - fun:_ZN11TUnixSystem10UnixSignalE8ESignalsPFvS0_E - fun:_ZN11TUnixSystem4InitEv - fun:_ZN5TROOT10InitSystemEv - fun:_ZN5TROOTC1EPKcS1_PPFvvE - } - { - boost::python::objects::py_function::py_function#>=,#boost::python::api::object),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#boost::python::api::object>#>#>(boost::python::detail::caller#>=,#boost::python::api::object),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#boost::python::api::object>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS9_EENS0_3api6objectEENS0_21default_call_policiesENS_3mpl7vector3IvSC_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS6_EENS0_3api6objectEENS0_21default_call_policiesENS_3mpl7vector3IvS9_SB_EEN4mpl_4int_ILi0EEEEESB_T_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_3api6objectEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS8_SA_EEEESA_T_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFvRS7_NS0_3api6objectEENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - boost::python::converter::registry::insert(void*#(*)(_object*),#boost::python::type_info,#_typeobject#const*#(*)()) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python9converter8registry6insertEPFPvP7_objectENS0_9type_infoEPFPK11_typeobjectvE - fun:_ZN5boost6python9converter29initialize_builtin_convertersEv - fun:_ZN5boost6python9converter81_GLOBAL__N__ZNK5boost6python9converter12registration25expected_from_python_typeEv7entriesEv - fun:_ZN5boost6python9converter81_GLOBAL__N__ZNK5boost6python9converter12registration25expected_from_python_typeEv3getENS0_9type_infoEb - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZN11TBufferFile15ReadClassBufferEPK6TClassPvijjS2_ - fun:_ZN18TStreamerBasicType8StreamerER7TBuffer - } - { - TBranch::ReadLeaves(TBuffer=) - Memcheck:Cond - fun:_ZN6TLeafC10ReadBasketER7TBuffer - fun:_ZN7TBranch10ReadLeavesER7TBuffer - fun:_ZN7TBranch8GetEntryExi - fun:_ZN4pool17RootTreeContainer10loadObjectEPNS_12DataCallBackERSt4pairIiiEi - fun:_ZN4pool14DbContainerImp4loadEPNS_12DataCallBackERKSt4pairIiiERS4_ib - } - { - G__EOFfgetc - Memcheck:Leak - fun:calloc - fun:G__EOFfgetc - fun:G__fgetc - fun:G__exec_statement - fun:G__loadfile - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - boost::python::objects::py_function::py_function#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>#const=>#>#>(boost::python::detail::caller#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2#>#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERKSt6vectorINS7_9StreamTagESaISA_EEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERKSt6vectorINS4_9StreamTagESaIS7_EEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7u32listERKSt6vectorINS3_9StreamTagESaIS6_EEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFNS4_7u32listERKS7_ENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A23__ParticleProperty_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectN7eformat6helper12DetectorMaskEENS0_21default_call_policiesENS_3mpl7vector3IvS7_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectN7eformat6helper12DetectorMaskEENS0_21default_call_policiesENS_3mpl7vector3IvS4_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectN7eformat6helper12DetectorMaskEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESK_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IN7eformat6helper12DetectorMaskEEENS3_4sizeIS8_EENS0_7objects12value_holderIS7_EENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESN_EPT1_PT_PT0_ - } - { - Reflex::ClassBuilderImpl::AddFunctionMember(char#const*,#Reflex::Type#const=,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZN6Reflex13ClassBuilderTIN4ROOT6Cintex6CintexEE17AddFunctionMemberERKNS_4TypeEPKcPFvPvSA_RKSt6vectorISA_SaISA_EESA_ESA_S9_j - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIiEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE14_M_create_nodeERKi - fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE9_M_insertEPSt18_Rb_tree_node_baseS7_RKi - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E479920__CaloHadWeight_dictEv - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E4799103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_CaloConditions_CaloConditionsDict_gen_rflx.cpp_9D2164D3_1F6E479912DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectN7eformat13GenericStatusEhhENS0_21default_call_policiesENS_3mpl7vector5IvS7_S9_hhEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectN7eformat13GenericStatusEhhENS0_21default_call_policiesENS_3mpl7vector5IvS4_S6_hhEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectN7eformat13GenericStatusEhhENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector3IN7eformat13GenericStatusEhhEENS3_4sizeIS7_EENS0_7objects12value_holderINS5_6helper6StatusEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESO_EPT1_PT_PT0_ - } - { - Reflex::Any::Holder,#std::allocator#>#>::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderISsE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZN6Reflex3AnyaSERKS0_ - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - } - { - std::_Rb_tree,#std::less,#std::allocator#>::_M_insert(std::_Rb_tree_node_base*,#std::_Rb_tree_node_base*,#boost::python::converter::registration#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSt8_Rb_treeIN5boost6python9converter12registrationES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE9_M_insertEPSt18_Rb_tree_node_baseSB_RKS3_ - fun:_ZNSt8_Rb_treeIN5boost6python9converter12registrationES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE13insert_uniqueERKS3_ - fun:_ZN5boost6python9converter81_GLOBAL__N__ZNK5boost6python9converter12registration25expected_from_python_typeEv3getENS0_9type_infoEb - fun:_ZN5boost6python9converter8registry6insertEPFPvP7_objectEPFvS5_PNS1_30rvalue_from_python_stage1_dataEENS0_9type_infoEPFPK11_typeobjectvE - } - { - G__search_tagname - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:_ZN4ROOT6Cintex8CintTypeERKN6Reflex4TypeERiS5_ - fun:_ZN4ROOT6Cintex18CINTTypedefBuilder5SetupERKN6Reflex4TypeE - } - { - SimpleProperty,#std::allocator#>,#std::allocator,#std::allocator#>#>#>,#BoundedVerifier,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>::SimpleProperty(BoundedVerifier,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISt6vectorISsSaISsEE15BoundedVerifierIS2_EEC1ES4_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRKN7eformat8CheckSumERKNS6_6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IjS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRKN7eformat8CheckSumERKNS3_6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IjS6_SA_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFjRKN7eformat8CheckSumERKNS2_6helper7u32listEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFjRKN7eformat8CheckSumERKNS3_6helper7u32listEEEENS0_3api6objectET_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEFvtENS0_21default_call_policiesENS_3mpl7vector3IvRS8_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEFvtENS0_21default_call_policiesENS_3mpl7vector3IvRS5_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEFvtENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_tEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvtENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPxSt6vectorIxSaIxEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - G__add_setup_func - Memcheck:Leak - fun:realloc - fun:G__add_setup_func - fun:_ZN17G__cpp_setup_initC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environment - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex4TypeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex4TypeESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex4TypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex4TypeESaIS1_EE9push_backERKS1_ - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1ERKSsjj - fun:_ZNKSs6substrEjj - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>*,#std::vector#>#>,#std::allocator#>#>#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt4pairIjSt6vectorI10LAruA2MeVPSaIS5_EEES4_IS8_SaIS8_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIcE8allocateEjPKv - fun:_ZNSt12_Vector_baseIcSaIcEE11_M_allocateEj - fun:_ZNSt6vectorIcSaIcEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPcS1_EEjRKc - fun:_ZNSt6vectorIcSaIcEE6insertEN9__gnu_cxx17__normal_iteratorIPcS1_EEjRKc - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectjjENS0_21default_call_policiesENS_3mpl7vector4IvS7_jjEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectjjENS0_21default_call_policiesENS_3mpl7vector4IvS4_jjEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectjjENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector2IjjEENS3_4sizeIS5_EENS0_7objects12value_holderIN7eformat6helper12DetectorMaskEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESN_EPT1_PT_PT0_ - } - { - decompose_rpath - Memcheck:Leak - fun:malloc - fun:decompose_rpath - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>*,#std::vector#>#>,#std::allocator#>#>#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt4pairIjSt6vectorI10LArDAC2uAPSaIS5_EEES4_IS8_SaIS8_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - ApplicationMgr::ApplicationMgr(IInterface*) - Memcheck:Leak - fun:_Znwj - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#PyROOT::TConverter*#(*)(long)>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPFPN6PyROOT10TConverterElEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT10TConverterElEESt10_Select1stIS7_ESt4lessISsESaIS7_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT10TConverterElEESt10_Select1stIS7_ESt4lessISsESaIS7_EE14_M_create_nodeERKS7_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT10TConverterElEESt10_Select1stIS7_ESt4lessISsESaIS7_EE9_M_insertEPSt18_Rb_tree_node_baseSF_RKS7_ - } - { - SG::BaseInfoBase::BaseInfoBase(unsigned#int,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN2SG12BaseInfoBaseC2EjRKSt9type_info - fun:_ZN2SG12BaseInfoImplI15MergedEventInfoEC1Ev - fun:_ZN2SG8BaseInfoI15MergedEventInfoE15instance_holderC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#(*)(std::basic_string,#std::allocator#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::basic_string,#std::allocator#>#const=>#>#>(boost::python::detail::caller#(*)(std::basic_string,#std::allocator#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::basic_string,#std::allocator#>#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS_10shared_ptrIN12EventStorage10DataReaderEEERKSsENS0_21default_call_policiesENS_3mpl7vector2IS9_SB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS_10shared_ptrIN12EventStorage10DataReaderEEERKSsENS0_21default_call_policiesENS_3mpl7vector2IS6_S8_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFNS_10shared_ptrIN12EventStorage10DataReaderEEERKSsEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFNS_10shared_ptrIN12EventStorage10DataReaderEEERKSsEEENS0_3api6objectET_z - } - { - Reflex::ClassBuilderImpl::ClassBuilderImpl(char#const*,#std::type_info#const=,#unsigned#int,#unsigned#int,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex13ClassBuilderTIN4ROOT6Cintex6CintexEEC1EPKcjNS_4TYPEE - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function,#__gnu_cxx::__normal_iterator#>#>#>::next,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>,#boost::mpl::vector2,#__gnu_cxx::__normal_iterator#>#>#>=>#>#>(boost::python::detail::caller,#__gnu_cxx::__normal_iterator#>#>#>::next,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>,#boost::mpl::vector2,#__gnu_cxx::__normal_iterator#>#>#>=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS1_14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISE_SaISE_EEEEE4nextES9_NS_3mpl7vector2IRSE_RSK_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISC_SaISC_EEEEE4nextES7_NS_3mpl7vector2IRSC_RSI_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISC_SaISC_EEEEE4nextES7_NS_3mpl7vector2IRSC_RSI_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISB_SaISB_EEEEE4nextES6_NS_3mpl7vector2IRSB_RSH_EEEENS0_3api6objectET_RKT0_RKT1_ - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN6Reflex16TemplateInstanceC2ERKSs - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - G__register_sharedlib - Memcheck:Leak - fun:malloc - fun:G__register_sharedlib - fun:G__RegisterLibrary - fun:G__call_setup_funcs - fun:G__main - } - { - (anonymous#namespace)::CreateIntConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE18CreateIntConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvSsjSsENS0_21default_call_policiesENS_3mpl7vector5IvRS7_SsjSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvSsjSsENS0_21default_call_policiesENS_3mpl7vector5IvRS4_SsjSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvSsjSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector5IvRS3_SsjSsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvSsjSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - hist_init - Memcheck:Leak - fun:malloc - fun:hist_init - fun:Gl_histinit - fun:_ZN6PyROOT18TPyROOTApplicationC1EPKcPiPPcb - fun:_ZN6PyROOT18TPyROOTApplication23CreatePyROOTApplicationEb - } - { - ROOT::Cintex::Method_stub_with_context(ROOT::Cintex::StubContext_t*,#G__value*,#char#const*,#G__param*,#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - obj:* - fun:_ZN4Cint11G__CallFunc7ExecuteEPv - fun:_ZN4Cint11G__CallFunc7ExecIntEPv - } - { - Property*#PropertyMgr::declareProperty,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>(std::basic_string,#std::allocator#>#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt6vectorISsSaISsEEEEP8PropertyRKSsRT_S7_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::FunctionBuilder::FunctionBuilder(Reflex::Type#const=,#char#const*,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#char) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN60_GLOBAL__N_.._src_ToyNextPassFilterAlg.cxx_EF105EC1_348EAF1526ToyNextPassFilterAlg_dict5C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN60_GLOBAL__N_.._src_ToyNextPassFilterAlg.cxx_EF105EC1_348EAF1528s_ToyNextPassFilterAlg_dict5E - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEKFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEKFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEKFbvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IbRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_KFbvENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SE_T0_RKT1_z - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIdSaIdEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIdSaIdEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPKNS_3Fit11DataOptionsE - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#std::vector#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSt6vectorIPK8PropertySaIS7_EEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt6vectorIPK8PropertySaIS5_EEESt10_Select1stIS8_ESt4lessISsESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt6vectorIPK8PropertySaIS5_EEESt10_Select1stIS8_ESt4lessISsESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt6vectorIPK8PropertySaIS5_EEESt10_Select1stIS8_ESt4lessISsESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiHistos_GaudiAlgorithm__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - PyROOT::Pythonize(_object*,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT9PythonizeEP7_objectRKSs - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - fun:_ZN6PyROOT13MakeRootClassEP7_objectS1_ - fun:PyCFunction_Call - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorI14G__bc_funccallE8allocateEjPKv - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EE16_M_allocate_nodeEv - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EE15_M_create_nodesEPPS0_S4_ - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EE17_M_initialize_mapEj - } - { - dl_open_worker - Memcheck:Leak - fun:realloc - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit - } - { - lemcis - Memcheck:Leak - fun:malloc - fun:lemcis - fun:lpmpali - fun:lpminitm - fun:lpminit - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIP16G__IncSetupStackE8allocateEjPKv - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EE15_M_allocate_mapEj - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EE17_M_initialize_mapEj - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EEC2ERKS1_j - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEFvPNS7_11ROBFragmentEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS8_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEFvPNS4_11ROBFragmentEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS5_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEFvPNS3_11ROBFragmentEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_S6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvPNS3_11ROBFragmentEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - CMP_CMPIntToFixedLenOctetStr - Memcheck:Cond - fun:CMP_CMPIntToOctetString - fun:CMP_CMPIntToFixedLenOctetStr - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - fun:ztvo5pe - } - { - sltskyc - Memcheck:Leak - fun:malloc - fun:sltskyc - fun:nlepeinit - fun:nlstdggo - fun:nlstdgg - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectyENS0_21default_call_policiesENS_3mpl7vector3IvS7_yEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectyENS0_21default_call_policiesENS_3mpl7vector3IvS4_yEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectyENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IyEENS3_4sizeIS5_EENS0_7objects12value_holderIN7eformat6helper12DetectorMaskEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESN_EPT1_PT_PT0_ - } - { - nsgbliuc - Memcheck:Leak - fun:calloc - fun:nsgbliuc - fun:nsgblini - fun:nngsini_init_streams - fun:nncpcin_maybe_init - } - { - Reflex::ClassBuilderImpl::AddTypedef(Reflex::Type#const=,#char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERKNS_4TypeEPKc - fun:_ZN6Reflex12ClassBuilder10AddTypedefERKNS_4TypeEPKc - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A65__std__map_std__basic_string_char__std__basic_string_char_s__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - } - { - (anonymous#namespace)::TManageMagic::TManageMagic() - Memcheck:Leak - fun:_Znwj - fun:_ZN41_GLOBAL__N__ZN6PyROOT17TPyExceptionMagicE12TManageMagicC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6PyROOT17TPyExceptionMagicE - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libPyROOT.so - } - { - _PyInt_Init - Memcheck:Leak - fun:malloc - fun:_PyInt_Init - fun:Py_InitializeEx - fun:Py_Initialize - fun:Py_Main - } - { - LhtIntCreate - Memcheck:Leak - fun:malloc - fun:LhtIntCreate - fun:kpummpin - fun:kpuenvcr - fun:OCIEnvCreate - } - { - TCint::CreateListOfDataMembers(TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint23CreateListOfDataMembersEP6TClass - fun:_ZN6TClass20GetListOfDataMembersEv - fun:_ZNK6PyROOT13TScopeAdapter14DataMemberSizeEv - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - } - { - nlstddt_do_alter_trace - Memcheck:Leak - fun:malloc - fun:nlstddt_do_alter_trace - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - G__loadfile - Memcheck:Leak - fun:_Znwj - fun:G__loadfile - fun:G__loadsystemfile - fun:_ZN5TCint4LoadEPKcb - fun:_ZN7TSystem4LoadEPKcS1_b - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPhSt6vectorIhSaIhEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - LhtqmAlloc - Memcheck:Leak - fun:malloc - fun:LhtqmAlloc - fun:LhtIntCreate - fun:kpummpin - fun:kpuenvcr - } - { - __fopen_internal - Memcheck:Leak - fun:malloc - fun:__fopen_internal - fun:fopen@@GLIBC_2.1 - fun:G__loadfile - fun:G__process_cmd - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_17FullEventFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_17FullEventFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_17FullEventFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_6helper8u32sliceERKS6_ENSF_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFNS6_7DWErrorEvENS0_21default_call_policiesENS_3mpl7vector2IS8_RS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFNS3_7DWErrorEvENS0_21default_call_policiesENS_3mpl7vector2IS5_RS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFNS2_7DWErrorEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_RS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FNS2_7DWErrorEvENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SF_T0_RKT1_z - } - { - AlgorithmManager::AlgorithmManager(IInterface*) - Memcheck:Leak - fun:_Znwj - fun:_ZN16AlgorithmManagerC1EP10IInterface - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN10CoreParser7DOMNodeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN10CoreParser7DOMNodeESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIPN10CoreParser7DOMNodeESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIPN10CoreParser7DOMNodeESaIS2_EE9push_backERKS2_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7827__IParticlePropertySvc_dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#eformat::helper::StreamTag>,#boost::python::return_value_policy,#boost::mpl::vector2,#std::allocator#>=,#eformat::helper::StreamTag=>#>#>(boost::python::detail::caller,#std::allocator#>,#eformat::helper::StreamTag>,#boost::python::return_value_policy,#boost::mpl::vector2,#std::allocator#>=,#eformat::helper::StreamTag=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberISsN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRSsRS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberISsN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRSsRS6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberISsN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRSsRS6_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberISsN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRSsRS6_EEEENS0_3api6objectET_RKT0_RKT1_ - } - { - (anonymous#namespace)::CreateULongConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE20CreateULongConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex4EnumC1EPKcRKSt9type_infoj - fun:_ZN6Reflex15EnumTypeBuilderEPKcS1_RKSt9type_infoj - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::FunctionMemberTemplateInstance::FunctionMemberTemplateInstance(char#const*,#Reflex::Type#const=,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#int,#Reflex::Scope#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZN6Reflex12ClassBuilder17AddFunctionMemberERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_j - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A81__PropertyWithValue_std__map_std__basic_string_char__std__vector_double_s_s__dictEv - } - { - nlemfins - Memcheck:Leak - fun:calloc - fun:nlemfins - fun:nleminz - fun:nlstdggo - fun:nlstdgg - } - { - nldaini - Memcheck:Leak - fun:malloc - fun:nldaini - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo5SetupEv - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer5SetupEv - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - } - { - Reflex::CFTGenerator,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::less,#std::allocator#>#>,#std::allocator,#std::allocator#>#const,#std::basic_string,#std::allocator#>#>#>#>#>#>::Generate() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex12CFTGeneratorINS_9MapInsertISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEEE8GenerateEv - fun:_ZN6Reflex5ProxyISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEE8GenerateEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A10method_x14EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZNK6Reflex14FunctionMember6InvokeEPNS_6ObjectERKSt6vectorIPvSaIS4_EE - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex19OwnedMemberTemplateEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex19OwnedMemberTemplateESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex19OwnedMemberTemplateESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex19OwnedMemberTemplateESaIS1_EE9push_backERKS1_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN12EventStorage10DataWriterERKN7eformat6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IvS8_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN12EventStorage10DataWriterERKN7eformat6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IvS5_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN12EventStorage10DataWriterERKN7eformat6helper8u32sliceEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS4_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_PFvRS3_RKN7eformat6helper8u32sliceEENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SK_T0_RKT1_z - } - { - PyROOT::CreateConverter(std::basic_string,#std::allocator#>#const=,#long) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeE - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A93__SimpleProperty_std__vector_unsignedsint__BoundedVerifier_std__vector_unsignedsint_s_s__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::Namespace::GlobalScope() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9Namespace11GlobalScopeEv - fun:_ZN6Reflex8InstanceC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6Reflex8InstanceC2Ev - } - { - PyObject_Realloc - Memcheck:Leak - fun:realloc - fun:PyObject_Realloc - fun:_PyString_Resize - fun:assemble - fun:compiler_function - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIlSaIlEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIlSaIlEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - G__incsetup_memfunc - Memcheck:Leak - fun:_Znwj - fun:G__incsetup_memfunc - fun:G__get_ifunchandle - fun:G__get_ifunchandle_base - fun:G__get_methodhandle_noerror - } - { - PyROOT::CreateExecutor(std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - } - { - nszssk - Memcheck:Cond - fun:nassky - fun:nszssk - fun:nszssk2 - fun:kpu8lgn - fun:kpuauthxa - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat11ROBFragmentIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat11ROBFragmentIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat11ROBFragmentIPKjEEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat11ROBFragmentIPKjEENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_EENS0_6detail13not_specifiedESE_E8def_implIS6_MS6_KFjvENSD_10def_helperIPKcSE_SE_SE_EEEEvPT_SL_T0_RKT1_z - } - { - PyInt_FromLong - Memcheck:Leak - fun:malloc - fun:PyInt_FromLong - fun:symtable_add_def - fun:symtable_visit_expr - fun:symtable_visit_stmt - } - { - timer_create - Memcheck:Param - timer_create(evp) - fun:timer_create - fun:_ZN6Athena14AlgorithmTimerC1EjN5boost8functionIFvvEEENS0_20AlgorithmTimerConfigE - fun:_ZN12AthSequencerC1ERKSsP11ISvcLocator - fun:_ZN10AlgFactoryI12AthSequencerE6createERKSsP11ISvcLocator - fun:_ZN73_GLOBAL__N_.._src_components_GaudiSequencer_entries.cxx_9D2164D3_142355B07FactoryI12AthSequencerFP10IAlgorithmSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - } - { - strdup - Memcheck:Leak - fun:malloc - fun:strdup - fun:set_completer_delims - fun:PyCFunction_Call - fun:PyEval_EvalFrameEx - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPvE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPvSaIS0_EE11_M_allocateEj - fun:_ZNSt6vectorIPvSaIS0_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEjRKS0_ - fun:_ZNSt6vectorIPvSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEjRKS0_ - } - { - nncpcin_maybe_init - Memcheck:Leak - fun:calloc - fun:nncpcin_maybe_init - fun:nnfgiinit - fun:nnfgauto - fun:nnfgainit - } - { - boost::python::objects::py_function::py_function#(*)(boost::python::list#const=),#boost::python::detail::constructor_policy,#boost::mpl::vector2,#boost::python::list#const=>#>,#boost::mpl::v_item,#boost::python::list#const=>,#1>,#1>,#1>#>(boost::python::detail::caller#(*)(boost::python::list#const=),#boost::python::detail::constructor_policy,#boost::mpl::vector2,#boost::python::list#const=>#>#const=,#boost::mpl::v_item,#boost::python::list#const=>,#1>,#1>,#1>) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS_10shared_ptrIN7eformat6helper12DetectorMaskEEERKNS0_4listEENS4_18constructor_policyINS0_21default_call_policiesEEENS_3mpl7vector2ISA_SD_EEEENSJ_6v_itemIvNSN_INS0_3api6objectENSJ_6v_maskISL_Li1EEELi1EEELi1EEEEERKT_T0_ - fun:_ZN5boost6python6detail20make_constructor_auxIPFNS_10shared_ptrIN7eformat6helper12DetectorMaskEEERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector2IS7_SA_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python16make_constructorIPFNS_10shared_ptrIN7eformat6helper12DetectorMaskEEERKNS0_4listEEEENS0_3api6objectET_ - fun:_Z31init_module_libpyeformat_helperv - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A26__GaudiPython__Helper_dictEv - } - { - Reflex::EnumBuilder::AddItem(char#const*,#long) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11EnumBuilder7AddItemEPKcl - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - PyList_New - Memcheck:Leak - fun:malloc - fun:PyList_New - fun:do_mkvalue - fun:va_build_value - fun:Py_BuildValue - } - { - Reflex::ScopeBase::ScopeBase() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2Ev - fun:_ZN6Reflex9NamespaceC1Ev - fun:_ZN6Reflex9Namespace11GlobalScopeEv - fun:_ZN6Reflex8InstanceC1Ev - } - { - Reflex::TypeName::TypeName(char#const*,#Reflex::TypeBase*,#std::type_info#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat17FullEventFragmentIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat17FullEventFragmentIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat17FullEventFragmentIPKjEEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_MS6_KFjvENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SN_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPySt6vectorIySaIyEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - nldsfrg - Memcheck:Leak - fun:malloc - fun:nldsfrg - fun:nldsinit - fun:nlstddt_do_alter_trace - fun:nlstdggo - } - { - TCint::SetClassInfo(TClass*,#bool) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint12SetClassInfoEP6TClassb - fun:_ZN6TClass11SetUnloadedEv - fun:_ZN4ROOT11RemoveClassEPKc - fun:_ZNK4ROOT20TDefaultInitBehavior10UnregisterEPKc - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - PyROOT::TMemoryRegulator::TMemoryRegulator() - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT16TMemoryRegulatorC1Ev - fun:_ZN6PyROOT8InitRootEv - fun:initlibPyROOT - fun:_PyImport_LoadDynamicModule - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#std::basic_string,#std::allocator#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE14_M_create_nodeERKS2_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZN11TBufferFile15ReadClassBufferEPK6TClassPvijjS2_ - fun:_ZN15TStreamerString8StreamerER7TBuffer - } - { - boost::python::objects::py_function::py_function,#boost::python::default_call_policies,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::python::default_call_policies,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIbN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS9_RKbEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIbN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKbEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIbN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKbEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIbN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKbEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - std::pair#>#>,#std::allocator#>#>#>#>::iterator,#bool>#boost::graph_detail::push_dispatch#>#>,#std::allocator#>#>#>#>,#boost::list_edge#>#>#>(std::list#>#>,#std::allocator#>#>#>#>=,#boost::list_edge#>#>#const=,#boost::graph_detail::back_insertion_sequence_tag) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost12graph_detail13push_dispatchISt4listINS_9list_edgeIjNS_8propertyINS_12edge_index_tEjNS4_INS_67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11edge_cast_tEPFPvS8_ENS_11no_propertyEEEEEEESaISE_EESE_EESt4pairINT_8iteratorEbERSI_RKT0_NS0_27back_insertion_sequence_tagE - fun:_ZN5boost12graph_detail4pushISt4listINS_9list_edgeIjNS_8propertyINS_12edge_index_tEjNS4_INS_67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11edge_cast_tEPFPvS8_ENS_11no_propertyEEEEEEESaISE_EESE_EESt4pairINT_8iteratorEbERSI_RKT0_ - fun:_ZN5boost6python7objects8add_castENS0_9type_infoES2_PFPvS3_Eb - fun:_ZN5boost6python7objects19register_conversionIN7eformat11ROBFragmentIPKjEENS3_6HeaderIS6_EEEEvbPT_PT0_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN23CaloClusterContainer_p613CaloCluster_pESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - nlepeinit - Memcheck:Leak - fun:malloc - fun:nlepeinit - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_KFjvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SG_T0_RKT1_z - } - { - lemrist - Memcheck:Leak - fun:malloc - fun:lemrist - fun:lpminitm - fun:lpminit - fun:LhtIntCreate - } - { - Reflex::Environ,#std::allocator#>#const,#CaloRec::Arrayrep>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironISt17_Rb_tree_iteratorISt4pairIKSsN7CaloRec8ArrayrepEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeISsEE8allocateEjPKv - fun:_ZNSt10_List_baseISsSaISsEE11_M_get_nodeEv - fun:_ZNSt4listISsSaISsEE14_M_create_nodeERKSs - fun:_ZNSt4listISsSaISsEE9_M_insertESt14_List_iteratorISsERKSs - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcjRKSaIcE - fun:_ZN15ESLOriginalFile31readOptionalFreeMetaDataStringsEv - } - { - __new_exitfn - Memcheck:Leak - fun:malloc - fun:__new_exitfn - fun:__cxa_atexit - fun:_ZN4ROOT6Cintex17rootEnhancerInfosEv - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfoC1ERN6Reflex4TypeE - } - { - nlififgbl - Memcheck:Leak - fun:malloc - fun:nlififgbl - fun:nlifigbl - fun:nlstdggo - fun:nlstdgg - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERN12EventStorage10DataReaderEENS0_21default_call_policiesENS_3mpl7vector2IS8_SB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERN12EventStorage10DataReaderEENS0_21default_call_policiesENS_3mpl7vector2IS5_S8_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7u32listERN12EventStorage10DataReaderEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S7_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_PFN7eformat6helper7u32listERS3_ENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SK_T0_RKT1_z - } - { - sktsfMalloc - Memcheck:Leak - fun:malloc - fun:sktsfMalloc - fun:kpummTLSGLOP - fun:kpuesssa - fun:kpushhsi - } - { - nlpainzert - Memcheck:Leak - fun:malloc - fun:nlpainzert - fun:nlpaparse - fun:nlpardfile - fun:nlpains - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector0IN4mpl_2naEEENS3_4sizeIS7_EENS0_7objects12value_holderIN7eformat5write11ROBFragmentEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - ztcebf - Memcheck:Cond - fun:ztceb_unpadding - fun:ztcebf - fun:ztcef - fun:ztcedec - fun:ztvo5ed - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6HeaderIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6HeaderIPKjEEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6HeaderIPKjEEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_MS6_KFjvENS9_10def_helperIPKcSA_SA_SA_EEEEvPT_SH_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>,#__gnu_cxx::__normal_iterator#>#>,#boost::_bi::protected_bind_t#>#>,#__gnu_cxx::__normal_iterator#>#>#(*)(std::vector#>=),#boost::_bi::list1#(*)()>#>#>,#boost::_bi::protected_bind_t#>#>,#__gnu_cxx::__normal_iterator#>#>#(*)(std::vector#>=),#boost::_bi::list1#(*)()>#>#>,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>#>,#boost::python::default_call_policies,#boost::mpl::vector2,#__gnu_cxx::__normal_iterator#>#>#>,#boost::python::back_reference#>=>#>#>#>(boost::python::detail::caller#>,#__gnu_cxx::__normal_iterator#>#>,#boost::_bi::protected_bind_t#>#>,#__gnu_cxx::__normal_iterator#>#>#(*)(std::vector#>=),#boost::_bi::list1#(*)()>#>#>,#boost::_bi::protected_bind_t#>#>,#__gnu_cxx::__normal_iterator#>#>#(*)(std::vector#>=),#boost::_bi::list1#(*)()>#>#>,#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>#>,#boost::python::default_call_policies,#boost::mpl::vector2,#__gnu_cxx::__normal_iterator#>#>#>,#boost::python::back_reference#>=>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS1_6detail8py_iter_ISt6vectorIN7eformat6helper9StreamTagESaISB_EEN9__gnu_cxx17__normal_iteratorIPSB_SD_EENS_3_bi16protected_bind_tINSI_6bind_tISH_PFSH_RSD_ENSI_5list1IPFNS_3argILi1EEEvEEEEEEESV_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEESX_NS_3mpl7vector2INS1_14iterator_rangeISY_SH_EENS0_14back_referenceISL_EEEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS0_7objects6detail8py_iter_ISt6vectorIN7eformat6helper9StreamTagESaIS9_EEN9__gnu_cxx17__normal_iteratorIPS9_SB_EENS_3_bi16protected_bind_tINSG_6bind_tISF_PFSF_RSB_ENSG_5list1IPFNS_3argILi1EEEvEEEEEEEST_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEESV_NS_3mpl7vector2INS3_14iterator_rangeISW_SF_EENS0_14back_referenceISJ_EEEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS0_7objects6detail8py_iter_ISt6vectorIN7eformat6helper9StreamTagESaIS9_EEN9__gnu_cxx17__normal_iteratorIPS9_SB_EENS_3_bi16protected_bind_tINSG_6bind_tISF_PFSF_RSB_ENSG_5list1IPFNS_3argILi1EEEvEEEEEEEST_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEESV_NS_3mpl7vector2INS3_14iterator_rangeISW_SF_EENS0_14back_referenceISJ_EEEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_7objects6detail8py_iter_ISt6vectorIN7eformat6helper9StreamTagESaIS8_EEN9__gnu_cxx17__normal_iteratorIPS8_SA_EENS_3_bi16protected_bind_tINSF_6bind_tISE_PFSE_RSA_ENSF_5list1IPFNS_3argILi1EEEvEEEEEEESS_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEESU_NS_3mpl7vector2INS2_14iterator_rangeISV_SE_EENS0_14back_referenceISI_EEEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - G__memfunc_para_setup - Memcheck:Leak - fun:malloc - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup_imp - fun:G__memfunc_setup - } - { - (anonymous#namespace)::CreateIntRefExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE20CreateIntRefExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - lpmmkpri - Memcheck:Leak - fun:malloc - fun:lpmmkpri - fun:lsfmai - fun:lpmloadpkg - fun:kpubalts - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A19__Reflex__Type_dictEv - fun:_ZN83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A12DictionariesC1Ev - } - { - JobOptionsCatalogue::JobOptionsCatalogue() - Memcheck:Leak - fun:_Znwj - fun:_ZN19JobOptionsCatalogueC1Ev - fun:_ZN13JobOptionsSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_1D26C1CA7FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP17LumiBlockRange_p1St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector9,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector9,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsSsjSsSsENS0_21default_call_policiesENS_3mpl7vector9IvS7_SsjSsSsjSsSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsSsjSsSsENS0_21default_call_policiesENS_3mpl7vector9IvS4_SsjSsSsjSsSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsSsjSsSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjSsSsjSsNS0_8optionalISsSsjSsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl7EEENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - dl_open_worker - Memcheck:Leak - fun:malloc - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN6Reflex13TypeDistillerIN4ROOT6Cintex17NewDelFunctions_tEE3GetEv - fun:_ZN6Reflex13TypeDistillerIPN4ROOT6Cintex17NewDelFunctions_tEE3GetEv - fun:_ZN6Reflex7GetTypeIPN4ROOT6Cintex17NewDelFunctions_tEEERKNS_4TypeEv - } - { - TCint::UpdateListOfTypes() - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint17UpdateListOfTypesEv - fun:_ZN5TROOT14GetListOfTypesEb - fun:_ZNK5TROOT7GetTypeEPKcb - fun:_ZN6TClass8GetClassEPKcbb - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_6HeaderIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_6HeaderIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_6HeaderIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_PFNS2_6helper8u32sliceERKS6_ENS9_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESA_SA_SA_EEEEvPT_PKcT0_RKT1_z - } - { - nlrnini - Memcheck:Leak - fun:malloc - fun:nlrnini - fun:nlrngr - fun:nlad_use_node - fun:nladget - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#eformat::helper::StreamTag>,#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#const=>#>#>(boost::python::detail::caller,#std::allocator#>,#eformat::helper::StreamTag>,#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberISsN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS9_RKSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberISsN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKSsEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberISsN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKSsEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberISsN7eformat6helper9StreamTagEEENS0_21default_call_policiesENS_3mpl7vector3IvRS6_RKSsEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - G__incsetup_memfunc - Memcheck:Leak - fun:_Znwj - fun:G__incsetup_memfunc - fun:G__get_methodhandle_noerror - fun:G__get_methodhandle - fun:_ZN4Cint12G__ClassInfo9GetMethodEPKcS2_PlNS0_9MatchModeENS0_15InheritanceModeE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FjvENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - TStorage::ObjectAlloc(unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN4TEnv8SetValueEPKcS1_9EEnvLevelS1_ - fun:_ZN14TReadEnvParser8KeyValueERK7TStringS2_S2_ - } - { - G__herits::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:G__cpp_setup_inheritanceG__Cont - fun:G__cpp_setupG__Cont - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>(ROOT::TCollectionProxyInfo::Pushback,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorISsSaISsEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorISsSaISsEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK23TVirtualCollectionProxy - } - { - xmalloc - Memcheck:Leak - fun:malloc - fun:xmalloc - fun:sh_set_lines_and_columns - fun:_rl_get_screen_size - fun:_rl_init_terminal_io - } - { - G__allocvariable - Memcheck:Leak - fun:malloc - fun:G__allocvariable - fun:G__searchvariable - fun:G__getvariable - fun:G__getitem - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_30__CLHEP__HepLorentzVector_dictEv - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_12DictionariesC1Ev - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP15AttrListIndexesSt6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS7_7u32listERKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS8_SB_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS4_7u32listERKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS5_S8_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS3_7u32listERKNS0_5sliceEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS4_S7_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7u32listENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS3_8u32sliceERKS4_RKNS0_5sliceEENS5_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - Reflex::TypedefTypeBuilder(char#const*,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18TypedefTypeBuilderEPKcRKNS_4TypeE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_AthenaServices_AthenaServicesDict_gen_rflx.cpp_9D2164D3_9F196D4D9type_voidE - obj:/afs/cern.ch/atlas/software/builds/nightlies/devval/AtlasCore/rel_5/Control/AthenaServices/i686-slc4-gcc34-dbg/libAthenaServicesDict.so - } - { - PyInt_FromLong - Memcheck:Leak - fun:malloc - fun:PyInt_FromLong - fun:analyze_block - fun:PySymtable_Build - fun:PyAST_Compile - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector5,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsENS0_21default_call_policiesENS_3mpl7vector5IvS7_SsjSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsENS0_21default_call_policiesENS_3mpl7vector5IvS4_SsjSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjNS0_8optionalISsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS3_4sizeISD_EENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - dictresize - Memcheck:Leak - fun:malloc - fun:dictresize - fun:PyType_Ready - fun:PyType_Ready - fun:_Py_ReadyTypes - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN4ROOT20TCollectionProxyInfo11EnvironBaseEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN4ROOT20TCollectionProxyInfo11EnvironBaseESaIS3_EE11_M_allocateEj - fun:_ZNSt6vectorIPN4ROOT20TCollectionProxyInfo11EnvironBaseESaIS3_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS3_S5_EERKS3_ - fun:_ZNSt6vectorIPN4ROOT20TCollectionProxyInfo11EnvironBaseESaIS3_EE9push_backERKS3_ - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPjSt6vectorIjSaIjEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERKNS6_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERKNS3_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERKNS2_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_6helper7u32listEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper8u32sliceERKNS6_11ROBFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper8u32sliceERKNS3_11ROBFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper8u32sliceERKNS2_11ROBFragmentIPKjEEENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat11ROBFragmentIPKjEENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_EENS0_6detail13not_specifiedESE_E8def_implIS6_PFNS2_6helper8u32sliceERKS6_ENSD_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESE_SE_SE_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector8,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector8,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsSsjSsENS0_21default_call_policiesENS_3mpl7vector8IvS7_SsjSsSsjSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsSsjSsENS0_21default_call_policiesENS_3mpl7vector8IvS4_SsjSsSsjSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsSsjSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjSsSsjSsNS0_8optionalISsSsjSsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl6EEENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - pwrite64 - Memcheck:Param - pwrite64(buf) - fun:pwrite64 - fun:__os_io - obj:/lib/tls/i686/libdb-4.2.so - fun:__memp_bhwrite - fun:__memp_sync_int - } - { - (anonymous#namespace)::CreateFloatConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE20CreateFloatConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13PropertyProxy3SetEP11TDataMember - fun:_ZN6PyROOT17PropertyProxy_NewINS_14TMemberAdapterEEEPNS_13PropertyProxyERKT_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFNS6_11SubDetectorEvENS0_21default_call_policiesENS_3mpl7vector2IS9_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFNS3_11SubDetectorEvENS0_21default_call_policiesENS_3mpl7vector2IS6_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFNS2_11SubDetectorEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS5_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFNS2_11SubDetectorEvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SE_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP9TileMu_p1St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - TStorage::Alloc(unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage5AllocEj - fun:_ZN9TObjArray4InitEii - fun:_ZN9TObjArrayC1Eii - fun:_ZN12TApplication10GetOptionsEPiPPc - } - { - ztceb_encblk - Memcheck:Value4 - fun:ztceaencbk - fun:ztceb_encblk - fun:ztcebn - fun:ztcen - fun:ztvo5pe - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiHistos_GaudiAlgorithm__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - (anonymous#namespace)::CreateULongExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE19CreateULongExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - ###obj:#lib#libcrypto.so.0.9.7a - Memcheck:Leak - fun:malloc - obj:/lib/libcrypto.so.0.9.7a - fun:CRYPTO_malloc - fun:lh_insert - fun:OBJ_NAME_add - } - { - nigini1 - Memcheck:Leak - fun:calloc - fun:nigini1 - fun:niqname - fun:kwfnran - fun:kwfcinit - } - { - Reflex::ScopeName::ScopeName(char#const*,#Reflex::ScopeBase*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE - } - { - TStorage::ReAlloc(void*,#unsigned#int,#unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage7ReAllocEPvjj - fun:_ZN9TObjArray6ExpandEi - fun:_ZN9TObjArray8StreamerER7TBuffer - fun:_ZNK6TClass8StreamerEPvR7TBufferPKS_ - } - { - slslameta - Memcheck:Leak - fun:malloc - fun:slslameta - fun:lpminitm - fun:lpminit - fun:LhtIntCreate - } - { - G__EOFfgetc - Memcheck:Leak - fun:calloc - fun:G__EOFfgetc - fun:G__fgetc - fun:G__exec_statement - fun:G__loadfile_tmpfile - } - { - (anonymous#namespace)::CreateDoubleConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE21CreateDoubleConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::(anonymous#namespace)::not_implemented_function() - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects64_GLOBAL__N_libs_python_src_object_function.cpp_CF14568D_F81E9B3224not_implemented_functionEv - fun:_ZN5boost6python7objects8function16add_to_namespaceERKNS0_3api6objectEPKcS6_S8_ - fun:_ZN5boost6python7objects16add_to_namespaceERKNS0_3api6objectEPKcS5_S7_ - fun:_ZN5boost6python6class_IN7eformat6helper9StreamTagENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFP7_objectRS4_RKS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SI_T0_RKT1_z - } - { - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:PyTuple_New - } - { - Reflex::MemberBase::MemberBase(char#const*,#Reflex::Type#const=,#Reflex::TYPE,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex14FunctionMemberC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jNS_4TYPEE - fun:_ZNK6Reflex9ScopeBase17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZNK6Reflex5Class17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - } - { - _dl_lookup_symbol_x - Memcheck:Leak - fun:realloc - fun:_dl_lookup_symbol_x - fun:_dl_relocate_object - fun:dl_open_worker - fun:_dl_catch_error - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFtvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - G__malloc - Memcheck:Leak - fun:calloc - fun:G__malloc - fun:_Z16G__alloc_var_refIlPFl8G__valueEEviT0_PcP12G__var_arrayiRS0_ - fun:G__allocvariable - fun:G__letvariable - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>#const=>#>#>(boost::python::detail::caller,#std::allocator#>#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat7TagTypeERKSsENS0_21default_call_policiesENS_3mpl7vector2IS7_S9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat7TagTypeERKSsENS0_21default_call_policiesENS_3mpl7vector2IS4_S6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFN7eformat7TagTypeERKSsEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFN7eformat7TagTypeERKSsEEENS0_3api6objectET_z - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - } - { - (anonymous#namespace)::CreateFloatArrayConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE25CreateFloatArrayConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13PropertyProxy3SetEP11TDataMember - fun:_ZN6PyROOT17PropertyProxy_NewINS_14TMemberAdapterEEEPNS_13PropertyProxyERKT_ - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7817__IConverter_dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN21AtlasSTLAddReflexDict16m_pair_int_floatE - obj:/afs/cern.ch/atlas/software/builds/nightlies/devval/AtlasCore/rel_5/Database/AtlasSTLAddReflex/i686-slc4-gcc34-dbg/libAtlasSTLAddReflexDict.so - } - { - G__readansiproto - Memcheck:Leak - fun:malloc - fun:G__readansiproto - fun:G__make_ifunctable - fun:G__define_var - fun:G__defined_type - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectjENS0_21default_call_policiesENS_3mpl7vector3IvS7_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectjENS0_21default_call_policiesENS_3mpl7vector3IvS4_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectjENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IjEENS3_4sizeIS5_EENS0_7objects12value_holderIN7eformat6helper6StatusEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESN_EPT1_PT_PT0_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE22__cool__IDatabase_dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFtRKN7eformat6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2ItSC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFtRKN7eformat6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2ItS9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFtRKN7eformat6HeaderIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItS8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_PFtRKS6_ENS9_10def_helperIPKcSA_SA_SA_EEEEvPT_SJ_T0_RKT1_z - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#ers::PluginManager::SharedLibrary*>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPN3ers13PluginManager13SharedLibraryEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN3ers13PluginManager13SharedLibraryEESt10_Select1stIS6_ESt4lessISsESaIS6_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN3ers13PluginManager13SharedLibraryEESt10_Select1stIS6_ESt4lessISsESaIS6_EE14_M_create_nodeERKS6_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN3ers13PluginManager13SharedLibraryEESt10_Select1stIS6_ESt4lessISsESaIS6_EE9_M_insertEPSt18_Rb_tree_node_baseSE_RKS6_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper16SourceIdentifierERKNS6_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS8_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper16SourceIdentifierERKNS3_5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS5_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper16SourceIdentifierERKNS2_5write17FullEventFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper16SourceIdentifierERKS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SH_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(daq::RawFileName::*)(),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#daq::RawFileName=>#>#>(boost::python::detail::caller,#std::allocator#>#(daq::RawFileName::*)(),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#daq::RawFileName=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFSsvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ISsRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FSsvENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - G__add_setup_func - Memcheck:Leak - fun:malloc - fun:G__add_setup_func - fun:_ZN29G__cpp_setup_initG__MetaUtilsC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentG__MetaUtils - } - { - boost::python::objects::py_function::py_function#(*)(eformat::FullEventFragment#const=,#unsigned#int),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::FullEventFragment#const=,#unsigned#int>#>#>(boost::python::detail::caller#(*)(eformat::FullEventFragment#const=,#unsigned#int),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector3,#eformat::FullEventFragment#const=,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat11ROBFragmentIPKjEERKNS6_17FullEventFragmentIS9_EEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3ISA_SE_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat11ROBFragmentIPKjEERKNS3_17FullEventFragmentIS6_EEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector3IS7_SB_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESZ_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat11ROBFragmentIPKjEERKNS2_17FullEventFragmentIS5_EEjENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS6_SA_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_11ROBFragmentIS5_EERKS6_jENSF_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - TStringRef::GetRep(int,#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TString7ReplaceEiiPKci - fun:_ZN7TStringaSEPKc - fun:_ZN14TPluginHandlerC1EPKcS1_S1_S1_S1_S1_ - } - { - SimpleProperty,#std::allocator#>,#BoundedVerifier,#std::allocator#>#>#>::SimpleProperty(std::basic_string,#std::allocator#>#const=,#std::basic_string,#std::allocator#>#const=,#BoundedVerifier,#std::allocator#>#>) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ERKSsS4_S1_ - fun:_ZN13JobOptionsSvc22addPropertyToCatalogueERKSsRK8Property - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7811method_5581EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - } - { - TGenCollectionProxy::TGenCollectionProxy(TGenCollectionProxy#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN19TGenCollectionProxyC2ERKS_ - fun:_ZN15TGenVectorProxyC1ERK19TGenCollectionProxy - fun:_ZNK19TGenCollectionProxy8GenerateEv - fun:_ZN14TBranchElement4InitEP5TTreeP7TBranchPKcP13TStreamerInfoiPciii - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiHistos_GaudiAlgorithm__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - TClassTable::SortTable() - Memcheck:Leak - fun:_Znaj - fun:_ZN11TClassTable9SortTableEv - fun:_ZN11TClassTable4InitEv - fun:_ZN9RootUtils15ScanForAbstract10initializeEv - fun:_ZN21AthenaRootStreamerSvc10initializeEv - } - { - _nc_doalloc - Memcheck:Leak - fun:realloc - fun:_nc_doalloc - fun:_nc_read_file_entry - fun:_nc_read_tic_entry - fun:_nc_read_terminfo_dirs - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7VersionEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7VersionEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7VersionEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7VersionENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator*,#std::vector,#std::allocator#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt4pairIj10LAruA2MeVPESt6vectorIS5_SaIS5_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFtvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - TArrayI::Set(int) - Memcheck:Leak - fun:_Znaj - fun:_ZN7TArrayI3SetEi - fun:_ZN6TColor10SetPaletteEiPi - fun:_ZN6TColor16InitializeColorsEv - fun:_ZN12TApplication18InitializeGraphicsEv - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(*)(eformat::RunType#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::RunType#const=>#>#>(boost::python::detail::caller,#std::allocator#>#(*)(eformat::RunType#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::RunType#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSsRKN7eformat7RunTypeEENS0_21default_call_policiesENS_3mpl7vector2ISsS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSsRKN7eformat7RunTypeEENS0_21default_call_policiesENS_3mpl7vector2ISsS6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFSsRKN7eformat7RunTypeEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFSsRKN7eformat7RunTypeEEEENS0_3api6objectET_z - } - { - Athena::Callback1Rep*#Athena::CreateCallback(void#(*)(Athena::SharedLibrary::LibraryInfo#const=,#int),#int#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Athena14CreateCallbackIRKNS_13SharedLibrary11LibraryInfoEiEEPNS_12Callback1RepIT_EEPFvS6_T0_ERKS9_ - fun:_ZN6Athena6Signal11handleFatalEPKciPFbiP7siginfoPvEPFviS4_S5_Ej - fun:_ZN14AthenaServices15SetFatalHandlerEi - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_AthenaServices_AthenaServicesDict_gen_rflx.cpp_9D2164D3_9F196D4D11method_3725EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPFvvEEE8allocateEjPKv - fun:_ZNSt10_List_baseIPFvvESaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIPFvvESaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIPFvvESaIS1_EE9_M_insertESt14_List_iteratorIS1_ERKS1_ - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector10,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector10,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsSsjSsSsSsENS0_21default_call_policiesENS_3mpl8vector10IvS7_SsjSsSsjSsSsSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsSsjSsSsSsENS0_21default_call_policiesENS_3mpl8vector10IvS4_SsjSsSsjSsSsSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsSsjSsSsSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjSsSsjSsNS0_8optionalISsSsjSsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl8EEENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - TCint::CreateListOfMethodArgs(TFunction*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint22CreateListOfMethodArgsEP9TFunction - fun:_ZN9TFunction19GetListOfMethodArgsEv - fun:_ZNK6PyROOT14TMemberAdapter19FunctionParameterAtEj - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE11GetPriorityEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP13TileDigits_p1St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKSt9type_infoPN2SG12BaseInfoBaseEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_PN2SG12BaseInfoBaseEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_PN2SG12BaseInfoBaseEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeIPKSt9type_infoSt4pairIKS2_PN2SG12BaseInfoBaseEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_ - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEKFPKS8_vENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2ISA_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEKFPKS5_vENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS7_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEKFPKS4_vENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS6_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFPKS4_vENS5_10def_helperINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7u32listEKFjlENS0_21default_call_policiesENS_3mpl7vector3IjRS8_lEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7u32listEKFjlENS0_21default_call_policiesENS_3mpl7vector3IjRS5_lEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7u32listEKFjlENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IjRS4_lEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7u32listENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjlENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - nlerinit - Memcheck:Leak - fun:malloc - fun:nlerinit - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - Reflex::TypeName::TypeName(char#const*,#Reflex::TypeBase*,#std::type_info#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeE - } - { - Reflex::ScopeName::ScopeName(char#const*,#Reflex::ScopeBase*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex5ClassC2EPKcjRKSt9type_infojNS_4TYPEE - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex4EnumC1EPKcRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - } - { - G__createtemplateclass - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - fun:_ZN5TCint17EnableAutoLoadingEv - } - { - (anonymous#namespace)::OutputStreamRegistrator131::create(std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN62_GLOBAL__N_.._src_streams_StandardStream.cxx_9D2164D3_DE5F63F926OutputStreamRegistrator1316createERKSs - fun:_ZNK3ers13StreamFactory17create_out_streamERKSs - fun:_ZN3ers13StreamManager12setup_streamERKSt6vectorISsSaISsEE - fun:_ZN3ers13StreamManager12setup_streamENS_8severityE - } - { - ers::StreamFactory::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers13StreamFactory8instanceEv - fun:_ZN62_GLOBAL__N_.._src_streams_StandardStream.cxx_9D2164D3_DE5F63F926OutputStreamRegistrator126C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN62_GLOBAL__N_.._src_streams_StandardStream.cxx_9D2164D3_DE5F63F920ers_NoValue_instanceE - } - { - ztceb_encblk - Memcheck:Value4 - fun:ztceaencbk - fun:ztceb_encblk - fun:ztceb_padding - fun:ztcebf - fun:ztcef - } - { - boost::python::objects::py_function::py_function#(*)(eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=,#bool),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector4,#eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=,#bool>#>#>(boost::python::detail::caller#(*)(eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=,#bool),#boost::python::with_custodian_and_ward_postcall<0u,#1u,#boost::python::default_call_policies>,#boost::mpl::vector4,#eformat::FullEventFragment#const=,#eformat::helper::SourceIdentifier#const=,#bool>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat11ROBFragmentIPKjEERKNS6_17FullEventFragmentIS9_EERKNS6_6helper16SourceIdentifierEbENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector4ISA_SE_SI_bEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat11ROBFragmentIPKjEERKNS3_17FullEventFragmentIS6_EERKNS3_6helper16SourceIdentifierEbENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS_3mpl7vector4IS7_SB_SF_bEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordES13_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat11ROBFragmentIPKjEERKNS2_17FullEventFragmentIS5_EERKNS2_6helper16SourceIdentifierEbENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector4IS6_SA_SE_bEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_11ROBFragmentIS5_EERKS6_RKNS2_6helper16SourceIdentifierEbENSF_10def_helperINS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - G__stack_instance - Memcheck:Leak - fun:_Znwj - fun:G__stack_instance - fun:G__resetplocal - fun:_Z20G__cpp_setup_global0v - fun:G__cpp_setup_globalG__MetaUtils - } - { - ztcedgks - Memcheck:Value4 - fun:ztced_einit - fun:ztcedgks - fun:ztcedi - fun:ztcebi - fun:ztcei - } - { - (anonymous#namespace)::OutputStreamRegistrator132::create(std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN62_GLOBAL__N_.._src_streams_StandardStream.cxx_9D2164D3_DE5F63F926OutputStreamRegistrator1326createERKSs - fun:_ZNK3ers13StreamFactory17create_out_streamERKSs - fun:_ZN3ers13StreamManager12setup_streamERKSt6vectorISsSaISsEE - fun:_ZN3ers13StreamManager12setup_streamENS_8severityE - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(*)(eformat::TagType#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::TagType#const=>#>#>(boost::python::detail::caller,#std::allocator#>#(*)(eformat::TagType#const=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::TagType#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSsRKN7eformat7TagTypeEENS0_21default_call_policiesENS_3mpl7vector2ISsS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSsRKN7eformat7TagTypeEENS0_21default_call_policiesENS_3mpl7vector2ISsS6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFSsRKN7eformat7TagTypeEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFSsRKN7eformat7TagTypeEEEENS0_3api6objectET_z - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE118____gnu_cxx____normal_iterator_boost__shared_ptr_cool__IObject_p_std__vector_boost__shared_ptr_cool__IObject_s_s__dictEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_32__CLHEP__HepRep4x4Symmetric_dictEv - fun:_ZN102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_102_GLOBAL__N__ZN21T_AthenaRootConverterIN5CLHEP12HepGenMatrixE15OldHepGenMatrixE12CopyOldToNewERKS2_RS1_12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP10LAruA2MeVPSt6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3#const=>#>#>(boost::python::detail::caller#const=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERKNS6_17FullEventFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SF_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERKNS3_17FullEventFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SC_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordES10_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERKNS2_17FullEventFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_SB_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_17FullEventFragmentIPKjEEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKjN2SG16BaseInfoBaseImpl4infoEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIjSt4pairIKjN2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS5_ESt4lessIjESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIjSt4pairIKjN2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS5_ESt4lessIjESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeIjSt4pairIKjN2SG16BaseInfoBaseImpl4infoEESt10_Select1stIS5_ESt4lessIjESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_ - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex4TypeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex4TypeESaIS1_EE11_M_allocateEj - fun:_ZNSt12_Vector_baseIN6Reflex4TypeESaIS1_EEC2EjRKS2_ - fun:_ZNSt6vectorIN6Reflex4TypeESaIS1_EEC1ERKS3_ - } - { - ztcedencbk - Memcheck:Value4 - fun:ztcedecb - fun:ztcedencbk - fun:ztceb_encblk - fun:ztcebn - fun:ztcen - } - { - SimpleProperty,#std::allocator#>,#BoundedVerifier,#std::allocator#>#>#>::SimpleProperty(BoundedVerifier,#std::allocator#>#>) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISs15BoundedVerifierISsEEC1ES1_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - Athena::Signal::handleFatal(char#const*,#int,#bool#(*)(int,#siginfo*,#void*),#void#(*)(int,#siginfo*,#void*),#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Athena6Signal11handleFatalEPKciPFbiP7siginfoPvEPFviS4_S5_Ej - fun:_ZN14AthenaServices15SetFatalHandlerEi - fun:_ZN103_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_AthenaServices_AthenaServicesDict_gen_rflx.cpp_9D2164D3_9F196D4D11method_3725EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN13CaloHadWeight7HadDataESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:PyFrame_New - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node,#std::allocator#>#const*#const,#Reflex::TypeName*>#>*>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPNS_15_Hashtable_nodeISt4pairIKPKSsPN6Reflex8TypeNameEEEEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsPN6Reflex8TypeNameEEEESaISB_EE11_M_allocateEj - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsPN6Reflex8TypeNameEEEESaISB_EE20_M_allocate_and_copyIPSB_EESF_jT_SG_ - fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKPKSsPN6Reflex8TypeNameEEEESaISB_EE7reserveEj - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERNS6_6helper16SourceIdentifierEENS0_21default_call_policiesENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERNS3_6helper16SourceIdentifierEENS0_21default_call_policiesENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERNS2_6helper16SourceIdentifierEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper16SourceIdentifierEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SH_T0_RKT1_z - } - { - PyROOT::(anonymous#namespace)::mp_new(_typeobject*,#_object*,#_object*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT64_GLOBAL__N_bindings_pyroot_src_MethodProxy.cxx_17E02520_1BE785DB6mp_newEP11_typeobjectP7_objectS4_ - fun:_ZN6PyROOT15MethodProxy_NewERKSsRSt6vectorIPNS_10PyCallableESaIS4_EE - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS8_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS5_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEFvjENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvjENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - ROOT::DefineBehavior(TQObject*,#TQObject*) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT14DefineBehaviorEP8TQObjectS1_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK6TTimer - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - } - { - (anonymous#namespace)::CreateCStringConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE22CreateCStringConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo8BuildOldEv - fun:_ZNK6TClass15GetStreamerInfoEi - fun:_ZN14TBranchElement8InitInfoEv - } - { - open_path - Memcheck:Leak - fun:malloc - fun:open_path - fun:_dl_map_object - fun:dl_open_worker - fun:_dl_catch_error - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFtvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - ###obj:#lib#libcrypto.so.0.9.7a - Memcheck:Leak - fun:realloc - obj:/lib/libcrypto.so.0.9.7a - fun:CRYPTO_realloc - fun:lh_insert - fun:OBJ_NAME_add - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE70__std___Vector_base_cool__IFieldp_std__allocator_cool__IFieldp_s__dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_FjvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SG_T0_RKT1_z - } - { - nlhthnew - Memcheck:Leak - fun:malloc - fun:nlhthnew - fun:nlpaxini - fun:nnftboot - fun:nnfgrne - } - { - (anonymous#namespace)::CreateFloatRefExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE22CreateFloatRefExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE30__std__basic_string_char__dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - G__params::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__memfunc_setup_imp - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func2v - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector0IN4mpl_2naEEENS3_4sizeIS7_EENS0_7objects12value_holderIN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESO_EPT1_PT_PT0_ - } - { - Reflex::TypeName::TypeName(char#const*,#Reflex::TypeBase*,#std::type_info#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7PointerC1ERKNS_4TypeERKSt9type_info - fun:_ZN6Reflex14PointerBuilderERKNS_4TypeERKSt9type_info - } - { - newarrayobject - Memcheck:Leak - fun:malloc - fun:newarrayobject - fun:array_new - fun:type_call - fun:PyObject_Call - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRKN7eformat8CheckSumERKNS6_6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IjS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRKN7eformat8CheckSumERKNS3_6helper8u32sliceEENS0_21default_call_policiesENS_3mpl7vector3IjS6_SA_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFjRKN7eformat8CheckSumERKNS2_6helper8u32sliceEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFjRKN7eformat8CheckSumERKNS3_6helper8u32sliceEEEENS0_3api6objectET_z - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector12,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector12,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjSsSsjSsSsSsjSsENS0_21default_call_policiesENS_3mpl8vector12IvS7_SsjSsSsjSsSsSsjSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjSsSsjSsSsSsjSsENS0_21default_call_policiesENS_3mpl8vector12IvS4_SsjSsSsjSsSsSsjSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjSsSsjSsSsSsjSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjSsSsjSsNS0_8optionalISsSsjSsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS3_4sizeISD_EENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN4ROOT6Cintex21ROOTClassEnhancerInfoEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN4ROOT6Cintex21ROOTClassEnhancerInfoESaIS3_EE11_M_allocateEj - fun:_ZNSt6vectorIPN4ROOT6Cintex21ROOTClassEnhancerInfoESaIS3_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS3_S5_EERKS3_ - fun:_ZNSt6vectorIPN4ROOT6Cintex21ROOTClassEnhancerInfoESaIS3_EE9push_backERKS3_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP17TileCosmicMuon_p2St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN12EventStorage10DataWriterERKN7eformat6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IvS8_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN12EventStorage10DataWriterERKN7eformat6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IvS5_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN12EventStorage10DataWriterERKN7eformat6helper7u32listEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS4_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_PFvRS3_RKN7eformat6helper7u32listEENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SK_T0_RKT1_z - } - { - Reflex::CFTGenerator,#std::allocator#>#>#>#>::Generate() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex12CFTGeneratorINS_8PushbackISt6vectorIN5boost10shared_ptrIN4cool7IObjectEEESaIS7_EEEEE8GenerateEv - fun:_ZN6Reflex5ProxyISt6vectorIN5boost10shared_ptrIN4cool7IObjectEEESaIS6_EEE8GenerateEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE10method_x14EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZNK6Reflex14FunctionMember6InvokeEPNS_6ObjectERKSt6vectorIPvSaIS4_EE - } - { - TCollectionProxyFactory::GenExplicitStreamer(ROOT::TCollectionProxyInfo#const=,#TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN23TCollectionProxyFactory19GenExplicitStreamerERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN23TCollectionProxyFactory24GenExplicitClassStreamerERKN4ROOT20TCollectionProxyInfoEP6TClass - fun:_ZN4pool11createClassEN6Reflex4TypeEPN4ROOT17TGenericClassInfoE - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo15Stub_DictionaryEPv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Property*#PropertyMgr::declareProperty,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::less,#std::allocator#>#>,#std::allocator,#std::allocator#>#const,#std::basic_string,#std::allocator#>#>#>#>#>(std::basic_string,#std::allocator#>#const=,#std::map,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::less,#std::allocator#>#>,#std::allocator,#std::allocator#>#const,#std::basic_string,#std::allocator#>#>#>#>=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEEP8PropertyRS5_RT_SB_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - listextend - Memcheck:Leak - fun:realloc - fun:listextend - fun:list_inplace_concat - fun:PyNumber_InPlaceAdd - fun:PyEval_EvalFrameEx - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIbSaIbEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIbSaIbEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper6StatusEKFNS6_13GenericStatusEvENS0_21default_call_policiesENS_3mpl7vector2IS9_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper6StatusEKFNS3_13GenericStatusEvENS0_21default_call_policiesENS_3mpl7vector2IS6_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper6StatusEKFNS2_13GenericStatusEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS5_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper6StatusENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFNS2_13GenericStatusEvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SE_T0_RKT1_z - } - { - (anonymous#namespace)::CreateVoidPtrPtrConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE25CreateVoidPtrPtrConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - kpu8lgn - Memcheck:Cond - fun:ztvo5ke - fun:kpu8lgn - fun:kpuauthxa - fun:kpuauth - fun:OCISessionBegin - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator,#std::allocator#>#>*,#std::vector,#std::allocator#>#>,#std::allocator,#std::allocator#>#>#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt4pairIjSsESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - lxldalc - Memcheck:Leak - fun:malloc - fun:lxldalc - fun:lxldlod - fun:lxdlobj - fun:lxdgetobj - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7u32listEFjljENS0_21default_call_policiesENS_3mpl7vector4IjRS8_ljEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7u32listEFjljENS0_21default_call_policiesENS_3mpl7vector4IjRS5_ljEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7u32listEFjljENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector4IjRS4_ljEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7u32listENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FjljENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - _nc_read_file_entry - Memcheck:Leak - fun:calloc - fun:_nc_read_file_entry - fun:_nc_read_tic_entry - fun:_nc_read_terminfo_dirs - fun:_nc_read_entry - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::less,#std::allocator#>#>#>=>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>=),#boost::python::default_call_policies,#boost::mpl::vector2,#std::less,#std::allocator#>#>#>=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEEENS0_21default_call_policiesENS_3mpl7vector2IjSL_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEEENS0_21default_call_policiesENS_3mpl7vector2IjSI_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES13_ET2_ - fun:_ZN5boost6python13make_functionIPFjRSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjSH_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEENS0_6detail13not_specifiedESI_SI_E8def_implISG_PFjRSG_ENSH_10def_helperIPKcSI_SI_SI_EEEEvPT_SQ_T0_RKT1_z - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIcSaIcEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIcSaIcEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - (anonymous#namespace)::CreateConstructorExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE25CreateConstructorExecutorEv - fun:_ZN6PyROOT18TConstructorHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT18TConstructorHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat6helper7u32listEEENS3_4sizeISA_EENS0_7objects14pointer_holderINS_10shared_ptrINS5_17FullEventFragmentIPKjEEEESJ_EENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESX_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7VersionERKNS6_6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7VersionERKNS3_6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7VersionERKNS2_6HeaderIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_PFNS2_6helper7VersionERKS6_ENS9_10def_helperIPKcSA_SA_SA_EEEEvPT_SL_T0_RKT1_z - } - { - TStorage::Alloc(unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage5AllocEj - fun:_ZN9TObjArray4InitEii - fun:_ZN9TObjArrayC1Eii - fun:_ZN5TFile4InitEb - } - { - TStorage::Alloc(unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage5AllocEj - fun:_ZN9TObjArray4InitEii - fun:_ZN9TObjArrayC1Eii - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_iib - } - { - (anonymous#namespace)::CreateVoidArrayConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE24CreateVoidArrayConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13PropertyProxy3SetEP11TDataMember - fun:_ZN6PyROOT17PropertyProxy_NewINS_14TMemberAdapterEEEPNS_13PropertyProxyERKT_ - } - { - setupterm - Memcheck:Leak - fun:calloc - fun:setupterm - fun:tgetent - fun:_rl_init_terminal_io - fun:rl_initialize - } - { - CMP_ModularReduce - Memcheck:Cond - fun:CMP_Compare - fun:CMP_ModularReduce - fun:Alg_ComputeModQ_GHash - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - } - { - nnfgspd - Memcheck:Leak - fun:calloc - fun:nnfgspd - fun:nnfgsrsp - fun:nnfgiinit - fun:nnfgauto - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A4nsb0E - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKiSt3setI14G__ifunc_tableSt4lessIS5_ESaIS5_EEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIiSt4pairIKiSt3setI14G__ifunc_tableSt4lessIS3_ESaIS3_EEESt10_Select1stIS8_ES4_IiESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIiSt4pairIKiSt3setI14G__ifunc_tableSt4lessIS3_ESaIS3_EEESt10_Select1stIS8_ES4_IiESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeIiSt4pairIKiSt3setI14G__ifunc_tableSt4lessIS3_ESaIS3_EEESt10_Select1stIS8_ES4_IiESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSF_RKS8_ - } - { - G__search_typename - Memcheck:Leak - fun:malloc - fun:G__search_typename - fun:G__search_typename2 - fun:_ZN4ROOT6Cintex18CINTTypedefBuilder3SetEPKcS3_ - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528132Declare_additional_CINT_typedefsEv - } - { - _PyImport_Init - Memcheck:Leak - fun:malloc - fun:_PyImport_Init - fun:Py_InitializeEx - fun:Py_Initialize - fun:Py_Main - } - { - boost::python::objects::py_function::py_function,#boost::python::return_value_policy,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::python::return_value_policy,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIbN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRbRS9_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIbN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRbRS6_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIbN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRbRS6_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIbN7eformat6helper9StreamTagEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRbRS6_EEEENS0_3api6objectET_RKT0_RKT1_ - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate,#std::allocator#>#>#>#>(ROOT::TCollectionProxyInfo::Pushback,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorISt4pairIddESaIS5_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorISt4pairIddESaIS2_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPKNS_3Fit11DataOptionsE - } - { - Reflex::Scope::__NIRVANA__() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex5Scope11__NIRVANA__Ev - fun:_ZN6Reflex9ScopeBaseC2Ev - fun:_ZN6Reflex9NamespaceC1Ev - fun:_ZN6Reflex9Namespace11GlobalScopeEv - } - { - Cint::Internal::G__StrBuf::GetBuf(int=) - Memcheck:Leak - fun:_Znaj - fun:_ZN4Cint8Internal9G__StrBuf6GetBufERi - fun:_ZN4Cint8Internal9G__StrBufC1Ei - fun:G__RegisterLibrary - fun:G__add_setup_func - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN15CaloHadDMCoeff29HadDMAreaESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPvP7_objectEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIPvSt4pairIKS0_P7_objectESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIPvSt4pairIKS0_P7_objectESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeIPvSt4pairIKS0_P7_objectESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_ - } - { - boost::python::objects::py_function::py_function,#boost::python::return_value_policy,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::python::return_value_policy,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIjN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIjN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRjRS5_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIjN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRjRS5_EEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIjN12EventStorage21run_parameters_recordEEENS0_19return_value_policyINS0_15return_by_valueENS0_21default_call_policiesEEENS_3mpl7vector2IRjRS5_EEEENS0_3api6objectET_RKT0_RKT1_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP20DataHeaderElement_p4St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex6MemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex6MemberESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex6MemberESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex6MemberESaIS1_EE9push_backERKS1_ - } - { - PyArena_New - Memcheck:Leak - fun:malloc - fun:PyArena_New - fun:PyRun_FileExFlags - fun:builtin_execfile - fun:PyCFunction_Call - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(eformat::helper::Version::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::helper::Version=>#>#>(boost::python::detail::caller,#std::allocator#>#(eformat::helper::Version::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#eformat::helper::Version=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper7VersionEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper7VersionEKFSsvENS0_21default_call_policiesENS_3mpl7vector2ISsRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper7VersionEKFSsvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ISsRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7VersionENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFSsvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN109_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_LArRawConditions1_LArRawConditionsDict1_gen_rflx.cpp_9D2164D3_E58A64A210method_x70EPvS0_RKSt6vectorIS0_SaIS0_EES0_ - fun:_ZNK6Reflex14FunctionMember6InvokeEPNS_6ObjectERKSt6vectorIPvSaIS4_EE - fun:_ZNK6Reflex6Member6InvokeEPNS_6ObjectERKSt6vectorIPvSaIS4_EE - } - { - std::vector#(*)(void*),#boost::tuples::null_type>#>#>,#std::allocator#(*)(void*),#boost::tuples::null_type>#>#>#>#>::_M_insert_aux(__gnu_cxx::__normal_iterator#(*)(void*),#boost::tuples::null_type>#>#>*,#std::vector#(*)(void*),#boost::tuples::null_type>#>#>,#std::allocator#(*)(void*),#boost::tuples::null_type>#>#>#>#>#>,#boost::tuples::cons#(*)(void*),#boost::tuples::null_type>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSt6vectorIN5boost6tuples4consINS0_6python9type_infoENS2_IjNS2_IPFSt4pairIPvS4_ES6_ENS1_9null_typeEEEEEEESaISD_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSD_SF_EERKSD_ - fun:_ZNSt6vectorIN5boost6tuples4consINS0_6python9type_infoENS2_IjNS2_IPFSt4pairIPvS4_ES6_ENS1_9null_typeEEEEEEESaISD_EE6insertEN9__gnu_cxx17__normal_iteratorIPSD_SF_EERKSD_ - fun:_ZN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE11demand_typeENS_6python9type_infoE - fun:_ZN5boost6python7objects23register_dynamic_id_auxENS0_9type_infoEPFSt4pairIPvS2_ES4_E - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERNS6_5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS8_SB_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERNS3_5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS5_S8_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7u32listERNS2_5write11ROBFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S7_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper7u32listERS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SG_T0_RKT1_z - } - { - lfvLoadPkg - Memcheck:Leak - fun:malloc - fun:lfvLoadPkg - fun:lfvSetShlMode - fun:lfvini1 - fun:lfvinit - } - { - ROOT::Cintex::CINTFunctionBuilder::Setup(Reflex::Member#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex19CINTFunctionBuilder5SetupERKN6Reflex6MemberE - fun:_ZN4ROOT6Cintex16CINTClassBuilder13Setup_memfuncEv - fun:_ZN4ROOT6Cintex16CINTClassBuilder26Setup_memfunc_with_contextEPv - obj:* - } - { - Reflex::MemberTemplateImpl::MemberTemplateImpl(char#const*,#Reflex::Scope#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZN6Reflex12ClassBuilder17AddFunctionMemberERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_j - } - { - PyObject_Malloc - Memcheck:Leak - fun:malloc - fun:PyObject_Malloc - fun:PyString_FromStringAndSize - fun:r_object - fun:r_object - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZNK6TClass15GetStreamerInfoEi - fun:_ZN5TTree17BuildStreamerInfoEP6TClassPv - } - { - PyObject_Malloc - Memcheck:Leak - fun:realloc - fun:PyObject_Malloc - fun:PyObject_Realloc - fun:PyNode_AddChild - fun:PyParser_AddToken - } - { - (anonymous#namespace)::Factory,#std::allocator#>,#ISvcLocator*)>::Func(void*,#void*,#std::vector#>#const=,#void*) - Memcheck:Leak - fun:_Znwj - fun:_ZN53_GLOBAL__N_.._src_ChronoAuditor.cpp_9D2164D3_8637D6FF7FactoryI13ChronoAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeIPvEEvRKNS_6ObjectERT_RKSt6vectorIS2_SaIS2_EE - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorImE8allocateEjPKv - fun:_ZNSt13_Bvector_baseISaIbEE11_M_allocateEj - fun:_ZNSt6vectorIbSaIbEE13_M_insert_auxESt13_Bit_iteratorb - fun:_ZNSt6vectorIbSaIbEE9push_backEb - } - { - Auditor::Auditor(std::basic_string,#std::allocator#>#const=,#ISvcLocator*) - Memcheck:Leak - fun:_Znwj - fun:_ZN7AuditorC2ERKSsP11ISvcLocator - fun:_ZN11NameAuditorC1ERKSsP11ISvcLocator - fun:_ZN51_GLOBAL__N_.._src_NameAuditor.cpp_9D2164D3_D73FEC677FactoryI11NameAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - OraMemInit - Memcheck:Leak - fun:malloc - fun:OraMemInit - fun:lmlinit - fun:lpminitm - fun:lpminit - } - { - boost::python::objects::py_function::py_function=,#unsigned#short,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector4=,#unsigned#short,#unsigned#short>#>#>(boost::python::detail::caller=,#unsigned#short,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector4=,#unsigned#short,#unsigned#short>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRN7eformat11ROBFragmentIPKjEEttENS0_21default_call_policiesENS_3mpl7vector4IbSB_ttEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRN7eformat11ROBFragmentIPKjEEttENS0_21default_call_policiesENS_3mpl7vector4IbS8_ttEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFbRN7eformat11ROBFragmentIPKjEEttENS0_21default_call_policiesENS_3mpl7vector4IbS8_ttEEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_ERKT1_ - fun:_ZN5boost6python6detail14name_space_defIPFbRN7eformat11ROBFragmentIPKjEEttENS0_21default_call_policiesENS0_6class_IS7_NS0_5basesINS3_6HeaderIS6_EEN4mpl_5void_ESH_SH_SH_SH_SH_SH_SH_SH_EENS1_13not_specifiedESJ_EEEEvRT1_PKcT_RKSt4pairIPKNS1_7keywordEST_ERKT0_SO_PNS0_7objects10class_baseE - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector4,#std::allocator#>,#unsigned#int>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector4,#std::allocator#>,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsjENS0_21default_call_policiesENS_3mpl7vector4IvS7_SsjEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsjENS0_21default_call_policiesENS_3mpl7vector4IvS4_SsjEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsjENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listISsjNS0_8optionalISsN4mpl_5void_ES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEEESA_EENS8_10integral_cIlLl2EEENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESU_EPT1_PT_PT0_ - } - { - Reflex::TypeTemplateImpl::TypeTemplateImpl(char#const*,#Reflex::Scope#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16TypeTemplateImplC1EPKcRKNS_5ScopeESt6vectorISsSaISsEES8_ - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex12ClassBuilderC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - SvcFactory::create(std::basic_string,#std::allocator#>#const=,#ISvcLocator*) - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_E48091907FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=,#_object*>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IvSL_SN_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IvSI_SK_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES15_ET2_ - fun:_ZN5boost6python13make_functionIPFvRSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvSH_SJ_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEENS0_6detail13not_specifiedESI_SI_E8def_implISG_PFvRSG_P7_objectENSH_10def_helperIPKcSI_SI_SI_EEEEvPT_SS_T0_RKT1_z - } - { - Reflex::ClassTemplateInstance::ClassTemplateInstance(char#const*,#unsigned#int,#std::type_info#const=,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex12ClassBuilderC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A81__PropertyWithValue_std__map_std__basic_string_char__std__vector_double_s_s__dictEv - } - { - G__store_dictposition - Memcheck:Leak - fun:malloc - fun:G__store_dictposition - fun:G__store_undo_position - fun:G__process_cmd - fun:_ZN5TCint11ProcessLineEPKcPN12TInterpreter10EErrorCodeE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEFvtENS0_21default_call_policiesENS_3mpl7vector3IvRS8_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEFvtENS0_21default_call_policiesENS_3mpl7vector3IvRS5_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEFvtENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_tEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvtENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI14G__ifunc_tableEE8allocateEjPKv - fun:_ZNSt8_Rb_treeI14G__ifunc_tableS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeI14G__ifunc_tableS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeERKS0_ - fun:_ZNSt8_Rb_treeI14G__ifunc_tableS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE9_M_insertEPSt18_Rb_tree_node_baseS8_RKS0_ - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node,#std::allocator#>#const*#const,#Reflex::TypeName*>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorINS_15_Hashtable_nodeISt4pairIKPKSsPN6Reflex8TypeNameEEEEE8allocateEjPKv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE11_M_get_nodeEv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE11_M_new_nodeERKS8_ - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsPN6Reflex8TypeNameEES3_NS_4hashIS3_EESt10_Select1stIS8_ESt8equal_toIS3_ESaIS7_EE14find_or_insertERKS8_ - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIsSaIsEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIsSaIsEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7818__Gaudi__Time_dictEv - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - } - { - TList::NewOptLink(TObject*,#char#const*,#TObjLink*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList10NewOptLinkEP7TObjectPKcP8TObjLink - fun:_ZN5TList7AddLastEP7TObjectPKc - fun:_ZN5TList3AddEP7TObjectPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7VersionERKNS6_11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7VersionERKNS3_11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper7VersionERKNS2_11ROBFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat11ROBFragmentIPKjEENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_EENS0_6detail13not_specifiedESE_E8def_implIS6_PFNS2_6helper7VersionERKS6_ENSD_10def_helperIPKcSE_SE_SE_EEEEvPT_SP_T0_RKT1_z - } - { - nlpaxini - Memcheck:Leak - fun:calloc - fun:nlpaxini - fun:nnftboot - fun:nnfgrne - fun:nlolgobj - } - { - TWebPalette::TWebPalette() - Memcheck:Leak - fun:_Znaj - fun:_ZN11TWebPaletteC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gWebImagePalette - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libGraf.so - } - { - ExpatCoreParser::do_comment(char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN15ExpatCoreParser10do_commentEPKc - fun:_ZN15ExpatCoreParser7commentEPvPKc - fun:reportComment - fun:doProlog - } - { - Reflex::TypeBase::FinalType()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex8TypeBase9FinalTypeEv - fun:_ZNK6Reflex4Type9FinalTypeEv - fun:_ZN4ROOT6Cintex13StubContext_t10InitializeEv - fun:_ZN4ROOT6Cintex24Method_stub_with_contextEPNS0_13StubContext_tEP8G__valuePKcP8G__parami - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper6StatusEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper6StatusEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper6StatusEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper6StatusENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFtvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - add_to_global - Memcheck:Leak - fun:realloc - fun:add_to_global - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - } - { - ers::IssueFactory::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers12IssueFactory8instanceEv - fun:_ZN3ers16IssueRegistratorINS_7NoValueEEC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN52_GLOBAL__N_.._src_OutputStream.cxx_9D2164D3_09F86C9720ers_NoValue_instanceE - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeE - fun:_ZN83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A103____gnu_cxx____normal_iterator_constsReflex__MemberTemplatep_std__vector_Reflex__MemberTemplate_s__dictEv - fun:_ZN83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A83_GLOBAL__N_.._slc4_ia32_gcc34_dbg_dict_Reflex_ReflexDict_dict.cpp_EF105EC1_CEBF4A2A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::MemberTemplateImpl::MemberTemplateImpl(char#const*,#Reflex::Scope#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#const=,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - } - { - G__createtemplateclass - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__declare_template - fun:G__exec_statement - fun:G__loadfile - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#PyROOT::TExecutor*#(*)()>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPFPN6PyROOT9TExecutorEvEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT9TExecutorEvEESt10_Select1stIS7_ESt4lessISsESaIS7_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT9TExecutorEvEESt10_Select1stIS7_ESt4lessISsESaIS7_EE14_M_create_nodeERKS7_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN6PyROOT9TExecutorEvEESt10_Select1stIS7_ESt4lessISsESaIS7_EE9_M_insertEPSt18_Rb_tree_node_baseSF_RKS7_ - } - { - ROOT::Cintex::ROOTClassEnhancer::Setup() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer5SetupEv - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - fun:_ZN6Reflex17FireClassCallbackERKNS_4TypeE - fun:_ZN6Reflex16ClassBuilderImplD1Ev - } - { - boost::python::objects::py_function::py_function=,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector3=,#unsigned#short>#>#>(boost::python::detail::caller=,#unsigned#short),#boost::python::default_call_policies,#boost::mpl::vector3=,#unsigned#short>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRN7eformat17FullEventFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbSB_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRN7eformat17FullEventFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbS8_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFbRN7eformat17FullEventFragmentIPKjEEtENS0_21default_call_policiesENS_3mpl7vector3IbS8_tEEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESO_ERKT1_ - fun:_ZN5boost6python6detail14name_space_defIPFbRN7eformat17FullEventFragmentIPKjEEtENS0_21default_call_policiesENS0_6class_IS7_NS_10shared_ptrIS7_EENS0_5basesINS3_6HeaderIS6_EEN4mpl_5void_ESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS1_13not_specifiedEEEEEvRT1_PKcT_RKSt4pairIPKNS1_7keywordESV_ERKT0_SQ_PNS0_7objects10class_baseE - } - { - boost::python::objects::py_function::py_function#>=,#_object*,#_object*),#boost::python::default_call_policies,#boost::mpl::vector4#>=,#_object*,#_object*>#>#>(boost::python::detail::caller#>=,#_object*,#_object*),#boost::python::default_call_policies,#boost::mpl::vector4#>=,#_object*,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS9_EEP7_objectSE_ENS0_21default_call_policiesENS_3mpl7vector4IvSC_SE_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS6_EEP7_objectSB_ENS0_21default_call_policiesENS_3mpl7vector4IvS9_SB_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRSt6vectorIN7eformat6helper9StreamTagESaIS5_EEP7_objectSA_ENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector4IvS8_SA_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFvRS7_P7_objectSE_ENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - Reflex::ScopeName::ScopeName(char#const*,#Reflex::ScopeBase*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN6Reflex13TypeDistillerIN4ROOT6Cintex17NewDelFunctions_tEE3GetEv - fun:_ZN6Reflex13TypeDistillerIPN4ROOT6Cintex17NewDelFunctions_tEE3GetEv - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#ers::format::Token>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN3ers6format5TokenEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3ers6format5TokenEESt10_Select1stIS5_ESt4lessISsESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3ers6format5TokenEESt10_Select1stIS5_ESt4lessISsESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3ers6format5TokenEESt10_Select1stIS5_ESt4lessISsESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_ - } - { - xrealloc - Memcheck:Leak - fun:realloc - fun:xrealloc - fun:rl_add_funmap_entry - fun:rl_initialize_funmap - fun:rl_initialize - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>*#(*)(eformat::FullEventFragment#const=,#bool),#boost::python::return_value_policy#>,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>*,#eformat::FullEventFragment#const=,#bool>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>*#(*)(eformat::FullEventFragment#const=,#bool),#boost::python::return_value_policy#>,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>*,#eformat::FullEventFragment#const=,#bool>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFPSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEERKNS7_17FullEventFragmentISC_EEbENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS_3mpl7vector3ISL_SP_bEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFPSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEERKNS4_17FullEventFragmentIS9_EEbENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS_3mpl7vector3ISI_SM_bEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES1C_ET2_ - fun:_ZN5boost6python13make_functionIPFPSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEERKNS3_17FullEventFragmentIS8_EEbENS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3ISH_SL_bEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFPSt3mapINS2_6helper16SourceIdentifierENS2_11ROBFragmentIS5_EESt4lessISL_ESaISt4pairIKSL_SN_EEERKS6_bENSF_10def_helperINS0_19return_value_policyINS0_17manage_new_objectENS0_32with_custodian_and_ward_postcallILj0ELj1ENS0_21default_call_policiesEEEEESG_SG_SG_EEEEvPT_PKcT0_RKT1_z - } - { - PyObject_Realloc - Memcheck:Leak - fun:realloc - fun:PyObject_Realloc - fun:_PyString_Resize - fun:assemble - fun:PyAST_Compile - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector12,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector12,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#std::basic_string,#std::allocator#>,#unsigned#int,#std::basic_string,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsjSsENS0_21default_call_policiesENS_3mpl8vector12IvRS7_SsjSsSsjSsSsSsjSsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsjSsENS0_21default_call_policiesENS_3mpl8vector12IvRS4_SsjSsSsjSsSsSsjSsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvSsjSsSsjSsSsSsjSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl8vector12IvRS3_SsjSsSsjSsSsSsjSsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvSsjSsSsjSsSsSsjSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - set_table_resize - Memcheck:Leak - fun:malloc - fun:set_table_resize - fun:set_update_internal - fun:make_new_set - fun:frozenset_new - } - { - boost::python::objects::py_function::py_function,#std::less,#std::allocator#>#>#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=,#_object*>#>#>(boost::python::detail::caller,#std::less,#std::allocator#>#>#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3,#std::less,#std::allocator#>#>#>=,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRSt3mapIN7eformat6helper16SourceIdentifierENS7_11ROBFragmentIPKjEESt4lessIS9_ESaISt4pairIKS9_SD_EEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IbSL_SN_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRSt3mapIN7eformat6helper16SourceIdentifierENS4_11ROBFragmentIPKjEESt4lessIS6_ESaISt4pairIKS6_SA_EEEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IbSI_SK_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSD_IPKNS1_7keywordES15_ET2_ - fun:_ZN5boost6python13make_functionIPFbRSt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IbSH_SJ_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt3mapIN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEESt4lessIS5_ESaISt4pairIKS5_S9_EEENS0_6detail13not_specifiedESI_SI_E8def_implISG_PFbRSG_P7_objectENSH_10def_helperIPKcSI_SI_SI_EEEEvPT_SS_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#std::vector#>#const=,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeERKSt6vectorIS0_SaIS0_EERKSt9type_info - fun:_ZN6Reflex17FunctionDistillerIFP10IAlgorithmSsP11ISvcLocatorEE3GetEv - fun:_ZN60_GLOBAL__N_.._src_ToyNextPassFilterAlg.cxx_EF105EC1_348EAF1526ToyNextPassFilterAlg_dict5C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::identity_function() - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects17identity_functionEv - fun:_ZN5boost6python7objects6detail21demand_iterator_classIN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorIS8_SaIS8_EEEENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEENS0_3api6objectEPKcPT_RKT0_ - fun:_ZNK5boost6python7objects6detail8py_iter_ISt6vectorIN7eformat6helper9StreamTagESaIS7_EEN9__gnu_cxx17__normal_iteratorIPS7_S9_EENS_3_bi16protected_bind_tINSE_6bind_tISD_PFSD_RS9_ENSE_5list1IPFNS_3argILi1EEEvEEEEEEESR_NS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEEclENS0_14back_referenceISH_EE - fun:_ZN5boost6python6detail6invokeINS0_15to_python_valueIRKNS0_7objects14iterator_rangeINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEEN9__gnu_cxx17__normal_iteratorIPN7eformat6helper9StreamTagESt6vectorISD_SaISD_EEEEEEEENS4_6detail8py_iter_ISH_SI_NS_3_bi16protected_bind_tINSP_6bind_tISI_PFSI_RSH_ENSP_5list1IPFNS_3argILi1EEEvEEEEEEES12_S8_EENS0_15arg_from_pythonINS0_14back_referenceISS_EEEEEEP7_objectNS1_11invoke_tag_ILb0ELb0EEERKT_RT0_RT1_ - } - { - Reflex::ScopeBase::AddFunctionMember(char#const*,#Reflex::Type#const=,#void#(*)(void*,#void*,#std::vector#>#const=,#void*),#void*,#char#const*,#unsigned#int)#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex9ScopeBase17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZNK6Reflex5Class17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - fun:_ZNK6Reflex4Type17AddFunctionMemberEPKcRKS0_PFvPvS5_RKSt6vectorIS5_SaIS5_EES5_ES5_S2_j - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo11AddFunctionERKSsRKN6Reflex4TypeEPFvPvS8_RKSt6vectorIS8_SaIS8_EES8_ES8_i - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#std::list,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSt4listISsSaISsEEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt4listISsSaISsEEESt10_Select1stIS5_ESt4lessISsESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt4listISsSaISsEEESt10_Select1stIS5_ESt4lessISsESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt4listISsSaISsEEESt10_Select1stIS5_ESt4lessISsESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_ - } - { - (anonymous#namespace)::CreateUIntRefExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE21CreateUIntRefExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - PyArena_Malloc - Memcheck:Leak - fun:malloc - fun:PyArena_Malloc - fun:_Py_Num - fun:ast_for_atom - fun:ast_for_expr - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#(EventStorage::DataReader::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#std::allocator,#std::allocator#>#>#>,#EventStorage::DataReader=>#>#>(boost::python::detail::caller,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#(EventStorage::DataReader::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#std::allocator,#std::allocator#>#>#>,#EventStorage::DataReader=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEKFSt6vectorISsSaISsEEvENS0_21default_call_policiesENS_3mpl7vector2ISA_RS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEKFSt6vectorISsSaISsEEvENS0_21default_call_policiesENS_3mpl7vector2IS7_RS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEKFSt6vectorISsSaISsEEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS6_RS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_KFSt6vectorISsSaISsEEvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - SimpleProperty,#std::allocator#>,#std::allocator,#std::allocator#>#>#>,#BoundedVerifier,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>::SimpleProperty(BoundedVerifier,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyISt6vectorISsSaISsEE15BoundedVerifierIS2_EEC1ES4_ - fun:_ZN11NameAuditorC1ERKSsP11ISvcLocator - fun:_ZN51_GLOBAL__N_.._src_NameAuditor.cpp_9D2164D3_D73FEC677FactoryI11NameAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN6Reflex16PluginFactoryMap7FillMapERKSs - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat7RunTypeERKNS6_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS7_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat7RunTypeERKNS3_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS4_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat7RunTypeERKNS2_17FullEventFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS3_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_PFNS2_7RunTypeERKS6_ENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SQ_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3#const=>#>#>(boost::python::detail::caller#const=),#boost::python::with_custodian_and_ward<1u,#2u,#boost::python::default_call_policies>,#boost::mpl::vector3#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERKNS6_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SF_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERKNS3_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SC_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordES10_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERKNS2_11ROBFragmentIPKjEEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_SB_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_11ROBFragmentIPKjEEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEFvRKS8_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS8_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEFvRKS5_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvRS5_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEFvRKS4_ENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_S6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvRKS4_ENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - nngtini_init_msg - Memcheck:Leak - fun:calloc - fun:nngtini_init_msg - fun:nncpcin_maybe_init - fun:nnfgiinit - fun:nnfgauto - } - { - ntgblini - Memcheck:Leak - fun:malloc - fun:ntgblini - fun:nsgblini - fun:nngsini_init_streams - fun:nncpcin_maybe_init - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectN7eformat13GenericStatusEtENS0_21default_call_policiesENS_3mpl7vector4IvS7_S9_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectN7eformat13GenericStatusEtENS0_21default_call_policiesENS_3mpl7vector4IvS4_S6_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectN7eformat13GenericStatusEtENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector2IN7eformat13GenericStatusEtEENS3_4sizeIS7_EENS0_7objects12value_holderINS5_6helper6StatusEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESO_EPT1_PT_PT0_ - } - { - nlpaputval - Memcheck:Leak - fun:malloc - fun:nlpaputval - fun:nlpainzert - fun:nlpaparse - fun:nlpardfile - } - { - PyThreadState_New - Memcheck:Leak - fun:malloc - fun:PyThreadState_New - fun:Py_InitializeEx - fun:Py_Initialize - fun:Py_Main - } - { - Reflex::TypedefTypeBuilder(char#const*,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18TypedefTypeBuilderEPKcRKNS_4TypeE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE - obj:/afs/cern.ch/sw/lcg/app/releases/COOL/COOL_2_8_2/slc4_ia32_gcc34_dbg/lib/liblcg_PyCoolDict.so - } - { - Property*#PropertyMgr::declareProperty(std::basic_string,#std::allocator#>#const=,#bool=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIbEEP8PropertyRKSsRT_S4_ - fun:_ZNK7Auditor15declarePropertyIbEEP8PropertyRKSsRT_S4_ - fun:_ZN7AuditorC2ERKSsP11ISvcLocator - fun:_ZN13ChronoAuditorC1ERKSsP11ISvcLocator - } - { - G__read_formal_templatearg - Memcheck:Leak - fun:malloc - fun:G__read_formal_templatearg - fun:G__declare_template - fun:G__exec_statement - fun:G__loadfile - } - { - (anonymous#namespace)::OutputStreamRegistrator48::create(std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN62_GLOBAL__N_.._src_streams_ThrottleStream.cxx_9D2164D3_B746E03925OutputStreamRegistrator486createERKSs - fun:_ZNK3ers13StreamFactory17create_out_streamERKSs - fun:_ZN3ers13StreamManager12setup_streamERKSt6vectorISsSaISsEE - fun:_ZN3ers13StreamManager12setup_streamENS_8severityE - } - { - AthenaRootStreamerSvc::AddStreamer(T_AthenaRootConverterBase*,#bool) - Memcheck:Leak - fun:_Znwj - fun:_ZN21AthenaRootStreamerSvc11AddStreamerEP25T_AthenaRootConverterBaseb - fun:_ZN21AthenaRootStreamerSvc11AddStreamerERKSsb - fun:_ZN21AthenaRootStreamerSvc10initializeEv - fun:_ZN7Service13sysInitializeEv - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorI8G__valueE8allocateEjPKv - fun:_ZNSt12_Vector_baseI8G__valueSaIS0_EE11_M_allocateEj - fun:_ZNSt6vectorI8G__valueSaIS0_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEjRKS0_ - fun:_ZNSt6vectorI8G__valueSaIS0_EE6insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEjRKS0_ - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7PointerC1ERKNS_4TypeERKSt9type_info - fun:_ZN6Reflex14PointerBuilderERKNS_4TypeERKSt9type_info - fun:_Z41__static_initialization_and_destruction_0ii - } - { - Reflex::Any::Holder::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderI11InterfaceIDE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZN6Reflex3AnyaSERKS0_ - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - } - { - Reflex::ClassBuilderImpl::AddTypedef(Reflex::Type#const=,#char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERKNS_4TypeEPKc - fun:_ZN6Reflex12ClassBuilder10AddTypedefERKNS_4TypeEPKc - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A24__std__vector_bool__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - } - { - listappend - Memcheck:Leak - fun:realloc - fun:listappend - fun:PyEval_EvalFrameEx - fun:PyEval_EvalFrameEx - fun:PyEval_EvalCodeEx - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FjvENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SE_T0_RKT1_z - } - { - G__malloc - Memcheck:Leak - fun:calloc - fun:G__malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__define_var - } - { - __gnu_cxx::new_allocator<__gnu_cxx::_Hashtable_node,#std::allocator#>#const*#const,#Reflex::Scope>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorINS_15_Hashtable_nodeISt4pairIKPKSsN6Reflex5ScopeEEEEE8allocateEjPKv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsN6Reflex5ScopeEES3_NS_4hashIS3_EESt10_Select1stIS7_ESt8equal_toIS3_ESaIS6_EE11_M_get_nodeEv - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsN6Reflex5ScopeEES3_NS_4hashIS3_EESt10_Select1stIS7_ESt8equal_toIS3_ESaIS6_EE11_M_new_nodeERKS7_ - fun:_ZN9__gnu_cxx9hashtableISt4pairIKPKSsN6Reflex5ScopeEES3_NS_4hashIS3_EESt10_Select1stIS7_ESt8equal_toIS3_ESaIS6_EE14find_or_insertERKS7_ - } - { - (anonymous#namespace)::CreateBoolConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE19CreateBoolConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - nlepeinit - Memcheck:Leak - fun:calloc - fun:nlepeinit - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - (anonymous#namespace)::CreateSTLStringRefExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE26CreateSTLStringRefExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper8u32sliceEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper8u32sliceEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper8u32sliceEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper8u32sliceENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - G__readansiproto - Memcheck:Leak - fun:malloc - fun:G__readansiproto - fun:G__make_ifunctable - fun:G__define_var - fun:G__exec_statement - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISsE8allocateEjPKv - fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEj - fun:_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - fun:_ZNSt6vectorISsSaISsEE9push_backERKSs - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS7_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvjENS0_21default_call_policiesENS_3mpl7vector3IvRS4_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvjENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS3_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvjENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat5write11ROBFragmentEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESM_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat5write11ROBFragmentEEENS3_4sizeISA_EENS0_7objects12value_holderIS7_EENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - Property*#PropertyMgr::declareProperty(std::basic_string,#std::allocator#>#const=,#int=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIiEEP8PropertyRKSsRT_S4_ - fun:_ZNK7Auditor15declarePropertyIiEEP8PropertyRKSsRT_S4_ - fun:_ZN7AuditorC2ERKSsP11ISvcLocator - fun:_ZN13ChronoAuditorC1ERKSsP11ISvcLocator - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6Reflex4BaseEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6Reflex4BaseESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6Reflex4BaseESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - fun:_ZNSt6vectorIN6Reflex4BaseESaIS1_EE9push_backERKS1_ - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A79__SimpleProperty_std__vector_float__BoundedVerifier_std__vector_float_s_s__dictEv - } - { - boost::python::objects::py_function::py_function,#boost::python::default_call_policies,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::python::default_call_policies,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerINS4_6memberIyN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS8_RKyEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxINS1_6memberIyN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKyEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python6detail22make_function_dispatchINS1_6memberIyN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKyEEEENS0_3api6objectET_RKT0_RKT1_N4mpl_5bool_ILb0EEE - fun:_ZN5boost6python13make_functionINS0_6detail6memberIyN12EventStorage21run_parameters_recordEEENS0_21default_call_policiesENS_3mpl7vector3IvRS5_RKyEEEENS0_3api6objectET_RKT0_RKT1_ - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERKNS6_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERKNS3_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERKNS2_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS2_6helper8u32sliceEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper12DetectorMaskEFvvENS0_21default_call_policiesENS_3mpl7vector2IvRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper12DetectorMaskEFvvENS0_21default_call_policiesENS_3mpl7vector2IvRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper12DetectorMaskEFvvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IvRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIiSaIiEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIiSaIiEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK23TVirtualCollectionProxy - } - { - G__store_dictposition - Memcheck:Leak - fun:malloc - fun:G__store_dictposition - fun:G__register_sharedlib - fun:G__RegisterLibrary - fun:G__call_setup_funcs - } - { - (anonymous#namespace)::CreateULongLongExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE23CreateULongLongExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write17FullEventFragmentERNS6_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write17FullEventFragmentERNS3_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write17FullEventFragmentERNS2_6helper8u32sliceEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper8u32sliceEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - (anonymous#namespace)::Factory::Func(void*,#void*,#std::vector#>#const=,#void*) - Memcheck:Leak - fun:_Znwj - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeIPvEEvRKNS_6ObjectERT_RKSt6vectorIS2_SaIS2_EE - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(*)(unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#unsigned#int>#>#>(boost::python::detail::caller,#std::allocator#>#(*)(unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector2,#std::allocator#>,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFSsjENS0_21default_call_policiesENS_3mpl7vector2ISsjEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFSsjENS0_21default_call_policiesENS_3mpl7vector2ISsjEEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFSsjEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFSsjEEENS0_3api6objectET_z - } - { - G__readansiproto - Memcheck:Leak - fun:malloc - fun:G__readansiproto - fun:G__make_ifunctable - fun:G__exec_statement - fun:G__define_type - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#MSG::Color>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN3MSG5ColorEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3MSG5ColorEESt10_Select1stIS4_ESt4lessISsESaIS4_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3MSG5ColorEESt10_Select1stIS4_ESt4lessISsESaIS4_EE14_M_create_nodeERKS4_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3MSG5ColorEESt10_Select1stIS4_ESt4lessISsESaIS4_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS4_ - } - { - Reflex::ScopeName::ScopeName(char#const*,#Reflex::ScopeBase*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeNameC1EPKcPNS_9ScopeBaseE - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex5ClassC1EPKcjRKSt9type_infojNS_4TYPEE - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - G__checkIfOnlyFunction - Memcheck:Leak - fun:malloc - fun:G__checkIfOnlyFunction - fun:G__loadfile - fun:G__process_cmd - fun:_ZN5TCint11ProcessLineEPKcPN12TInterpreter10EErrorCodeE - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat17FullEventFragmentIPKjEEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat17FullEventFragmentIPKjEEKFtvENS0_21default_call_policiesENS_3mpl7vector2ItRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat17FullEventFragmentIPKjEEKFtvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2ItRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat17FullEventFragmentIPKjEENS_10shared_ptrIS6_EENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESD_SD_SD_SD_SD_SD_SD_SD_EENS0_6detail13not_specifiedEE8def_implIS6_MS6_KFtvENSF_10def_helperIPKcSG_SG_SG_EEEEvPT_SN_T0_RKT1_z - } - { - SltsPrInit - Memcheck:Leak - fun:malloc - fun:SltsPrInit - fun:nlpaxini - fun:nnftboot - fun:nnfgrne - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat12HeaderMarkerES7_ENS0_21default_call_policiesENS_3mpl7vector2IS7_S7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat12HeaderMarkerES4_ENS0_21default_call_policiesENS_3mpl7vector2IS4_S4_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFN7eformat12HeaderMarkerES3_EEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFN7eformat12HeaderMarkerES4_EEENS0_3api6objectET_z - } - { - sltskminit - Memcheck:Leak - fun:malloc - fun:sltskminit - fun:sltsini - fun:slxmxinit - fun:lxzinit - } - { - TList::NewLink(TObject*,#TObjLink*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList7NewLinkEP7TObjectP8TObjLink - fun:_ZN5TList7AddLastEP7TObject - fun:_ZN9THashList7AddLastEP7TObject - fun:_ZN5TList3AddEP7TObject - } - { - PyFloat_FromDouble - Memcheck:Leak - fun:malloc - fun:PyFloat_FromDouble - fun:_pystat_fromstructstat - fun:posix_stat - fun:PyCFunction_Call - } - { - boost::python::objects::py_function::py_function#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#_object*>#>#>(boost::python::detail::caller#>=,#_object*),#boost::python::default_call_policies,#boost::mpl::vector3#>=,#_object*>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFbRSt6vectorIN7eformat6helper9StreamTagESaIS9_EEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IbSC_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFbRSt6vectorIN7eformat6helper9StreamTagESaIS6_EEP7_objectENS0_21default_call_policiesENS_3mpl7vector3IbS9_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFbRSt6vectorIN7eformat6helper9StreamTagESaIS5_EEP7_objectENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IbS8_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFbRS7_P7_objectENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SJ_T0_RKT1_z - } - { - ThreadGaudi::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN11ThreadGaudi8instanceEv - fun:_ZN2SG29getDataSourcePointerFromGaudiERKSs - fun:_ZN2SG20getDataSourcePointerERKSs - fun:_ZN20DataProxyStorageBase17defaultDataSourceEv - } - { - lpmarrfuncs - Memcheck:Leak - fun:malloc - fun:lpmarrfuncs - fun:kpuslMain - fun:OCISharedLibInit - fun:ocieiInit - } - { - G__loadfile - Memcheck:Leak - fun:malloc - fun:G__loadfile - fun:G__loadsystemfile - fun:_ZN5TCint4LoadEPKcb - fun:_ZN7TSystem4LoadEPKcS1_b - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex9NamespaceC1EPKc - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN61_GLOBAL__N_.._src_ToyNextPassFilterTool.cxx_EF105EC1_6DFCE1AD27ToyNextPassFilterTool_dict5C1Ev - } - { - _nc_read_file_entry - Memcheck:Leak - fun:malloc - fun:_nc_read_file_entry - fun:_nc_read_tic_entry - fun:_nc_read_terminfo_dirs - fun:_nc_read_entry - } - { - nldtin2_cycle - Memcheck:Leak - fun:malloc - fun:nldtin2_cycle - fun:nlstddt_do_alter_trace - fun:nlstdggo - fun:nlstdgg - } - { - CMP_CMPIntToFixedLenOctetStr - Memcheck:Cond - fun:CMP_BitLengthOfCMPInt - fun:CMP_CMPIntToFixedLenOctetStr - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - fun:ztcsh - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIPcSaIS4_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIPcSaIS1_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - G__params::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__readansiproto - fun:G__make_ifunctable - fun:G__define_var - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat6helper12DetectorMaskERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat6helper12DetectorMaskERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat6helper12DetectorMaskERKNS0_4listEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RKNS0_4listEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SH_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#std::vector#>#const=,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeERKSt6vectorIS0_SaIS0_EERKSt9type_info - fun:_ZN6Reflex13PluginService6CreateERKSsRKNS_4TypeERKSt6vectorINS_11ValueObjectESaIS7_EE - fun:_ZN6Reflex13PluginService6CreateIPN4pool13ICINTStreamerENS_4TypeEEET_RKSsRKT0_ - fun:_ZN4pool8streamerERN6Reflex4TypeE - } - { - PyThread_set_key_value - Memcheck:Leak - fun:malloc - fun:PyThread_set_key_value - fun:_PyGILState_Init - fun:Py_InitializeEx - fun:Py_Initialize - } - { - TCint::CallFunc_Factory()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK5TCint16CallFunc_FactoryEv - fun:_ZN11TMethodCall18InitImplementationEPKcS1_S1_P6TClassPKv - fun:_ZN11TMethodCall17InitWithPrototypeEP6TClassPKcS3_ - fun:_ZN14TPluginHandler12SetupCallEnvEv - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIP14G__bc_funccallE8allocateEjPKv - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EE15_M_allocate_mapEj - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EE17_M_initialize_mapEj - fun:_ZNSt11_Deque_baseI14G__bc_funccallSaIS0_EEC2ERKS1_j - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - fun:_ZNSs9_M_mutateEjjj - fun:_ZNSs6assignEPKcj - fun:_ZNSsaSEPKc - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZNK6TClass15GetStreamerInfoEi - fun:_ZN13TStreamerInfo5BuildEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller<_object*#(*)(eformat::helper::StreamTag=,#eformat::helper::StreamTag#const=),#boost::python::default_call_policies,#boost::mpl::vector3<_object*,#eformat::helper::StreamTag=,#eformat::helper::StreamTag#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFP7_objectRN7eformat6helper9StreamTagERKSA_ENS0_21default_call_policiesENS_3mpl7vector3IS7_SB_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFP7_objectRN7eformat6helper9StreamTagERKS7_ENS0_21default_call_policiesENS_3mpl7vector3IS4_S8_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIPFP7_objectRN7eformat6helper9StreamTagERKS6_ENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS3_S7_S9_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper9StreamTagENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFP7_objectRS4_RKS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SI_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector3#>#>(boost::python::detail::caller,#boost::mpl::vector3#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN7eformat5write11ROBFragmentERNS6_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN7eformat5write11ROBFragmentERNS3_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS_3mpl7vector3IvS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN7eformat5write11ROBFragmentERNS2_6helper7u32listEENS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS5_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFvRS4_RNS2_6helper7u32listEENS5_10def_helperINS0_23with_custodian_and_wardILj1ELj2ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - lficis - Memcheck:Leak - fun:malloc - fun:lficis - fun:lpmpali - fun:lpminitm - fun:lpminit - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiPython__HistoDecorator_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - _nc_home_terminfo - Memcheck:Leak - fun:malloc - fun:_nc_home_terminfo - fun:_nc_read_entry - fun:setupterm - fun:tgetent - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectRKN7eformat6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IvS7_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectRKN7eformat6helper7u32listEENS0_21default_call_policiesENS_3mpl7vector3IvS4_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectRKN7eformat6helper7u32listEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESM_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1IRKN7eformat6helper7u32listEEENS3_4sizeISA_EENS0_7objects12value_holderIS7_EENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESP_EPT1_PT_PT0_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper6StatusEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper6StatusEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper6StatusEKFhvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IhRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper6StatusENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFhvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::EnumBuilder::EnumBuilder(char#const*,#std::type_info#const=,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11EnumBuilderC1EPKcRKSt9type_infoj - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - Property*#PropertyMgr::declareProperty(std::basic_string,#std::allocator#>#const=,#int=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIiEEP8PropertyRKSsRT_S4_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - TGenCollectionProxy::Generate()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK19TGenCollectionProxy8GenerateEv - fun:_ZN14TBranchElement18GetCollectionProxyEv - fun:_ZN14TBranchElement10SetAddressEPv - fun:_ZN14TBranchElement10SetAddressEPv - } - { - Reflex::MemberTemplateName::MemberTemplateName(char#const*,#Reflex::MemberTemplateImpl*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18MemberTemplateNameC1EPKcPNS_18MemberTemplateImplE - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex16ClassBuilderImpl17AddFunctionMemberEPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_j - } - { - nleminz - Memcheck:Leak - fun:calloc - fun:nleminz - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - __gnu_cxx::new_allocator,#std::allocator#>#>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKcSt3setIiSt4lessIiESaIiEEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIPKcSt4pairIKS1_St3setIiSt4lessIiESaIiEEESt10_Select1stIS9_EN7NameMap15G__charptr_lessESaIS9_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIPKcSt4pairIKS1_St3setIiSt4lessIiESaIiEEESt10_Select1stIS9_EN7NameMap15G__charptr_lessESaIS9_EE14_M_create_nodeERKS9_ - fun:_ZNSt8_Rb_treeIPKcSt4pairIKS1_St3setIiSt4lessIiESaIiEEESt10_Select1stIS9_EN7NameMap15G__charptr_lessESaIS9_EE9_M_insertEPSt18_Rb_tree_node_baseSH_RKS9_ - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIfSaIfEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIfSaIfEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIjE8allocateEjPKv - fun:_ZNSt12_Vector_baseIjSaIjEE11_M_allocateEj - fun:_ZNSt6vectorIjSaIjEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPjS1_EEjRKj - fun:_ZN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE6searchERKNS0_11smart_graphEPvjj - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIPKcSaIS5_EEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIPKcSaIS2_EE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_ - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE784nsb0E - } - { - G__setfilecontext - Memcheck:Leak - fun:malloc - fun:G__setfilecontext - fun:_ZN4ROOT6Cintex20ArtificialSourceFileC1Ev - fun:_ZN4ROOT6Cintex8CallbackclERKN6Reflex4TypeE - fun:_ZN4ROOT6Cintex6Cintex6EnableEv - } - { - Reflex::MemberBase::MemberBase(char#const*,#Reflex::Type#const=,#Reflex::TYPE,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex10DataMemberC1EPKcRKNS_4TypeEjj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - } - { - Reflex::MemberBase::MemberBase(char#const*,#Reflex::Type#const=,#Reflex::TYPE,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex10MemberBaseC2EPKcRKNS_4TypeENS_4TYPEEj - fun:_ZN6Reflex14FunctionMemberC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jNS_4TYPEE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - fun:_ZN88_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7888_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiKernel_dictionary_dict.cpp_17E02520_101EBE7812DictionariesC1Ev - } - { - TStreamerInfo::Compile() - Memcheck:Leak - fun:_Znaj - fun:_ZN13TStreamerInfo7CompileEv - fun:_ZN13TStreamerInfo5BuildEv - fun:_ZN11TBufferFile15ReadClassBufferEPK6TClassPvijjS2_ - fun:_ZN18TStreamerSTLstring8StreamerER7TBuffer - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKjPN2SG12BaseInfoBaseEEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIjSt4pairIKjPN2SG12BaseInfoBaseEESt10_Select1stIS5_ESt4lessIjESaIS5_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIjSt4pairIKjPN2SG12BaseInfoBaseEESt10_Select1stIS5_ESt4lessIjESaIS5_EE14_M_create_nodeERKS5_ - fun:_ZNSt8_Rb_treeIjSt4pairIKjPN2SG12BaseInfoBaseEESt10_Select1stIS5_ESt4lessIjESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_ - } - { - boost::python::converter::registry::insert(void*#(*)(_object*),#void#(*)(_object*,#boost::python::converter::rvalue_from_python_stage1_data*),#boost::python::type_info,#_typeobject#const*#(*)()) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python9converter8registry6insertEPFPvP7_objectEPFvS5_PNS1_30rvalue_from_python_stage1_dataEENS0_9type_infoEPFPK11_typeobjectvE - fun:_ZN5boost6python9converter22shared_ptr_from_pythonIN12EventStorage10DataReaderEEC1Ev - fun:_ZN5boost6python7objects41register_shared_ptr_from_python_and_castsIN12EventStorage10DataReaderENS0_5basesIN4mpl_5void_ES7_S7_S7_S7_S7_S7_S7_S7_S7_EEEEvPT_T0_ - fun:_ZN5boost6python7objects14class_metadataIN12EventStorage10DataReaderENS_10shared_ptrIS4_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE13register_aux2IS4_NS_17integral_constantIbLb0EEEEEvPT_T0_ - } - { - SvcFactory::create(std::basic_string,#std::allocator#>#const=,#ISvcLocator*) - Memcheck:Leak - fun:_Znwj - fun:_ZN10SvcFactoryI13JobOptionsSvcE6createERKSsP11ISvcLocator - fun:_ZN67_GLOBAL__N_.._src_JobOptionsSvc_JobOptionsSvc.cpp_9D2164D3_1D26C1CA7FactoryI13JobOptionsSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - (anonymous#namespace)::CreateUIntConverter(long) - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gConvFactoriesE19CreateUIntConverterEl - fun:_ZN6PyROOT15CreateConverterERKSsl - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - G__set_class_autoloading_table - Memcheck:Leak - fun:malloc - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - fun:_ZN7TSystem4LoadEPKcS1_b - fun:_ZN11TUnixSystem4LoadEPKcS1_b - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorI16G__IncSetupStackE8allocateEjPKv - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EE16_M_allocate_nodeEv - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EE15_M_create_nodesEPPS0_S4_ - fun:_ZNSt11_Deque_baseI16G__IncSetupStackSaIS0_EE17_M_initialize_mapEj - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN6PyROOT10PyCallableEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN6PyROOT10PyCallableESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIPN6PyROOT10PyCallableESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIPN6PyROOT10PyCallableESaIS2_EE9push_backERKS2_ - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKliEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIlSt4pairIKliESt10_Select1stIS2_ESt4lessIlESaIS2_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIlSt4pairIKliESt10_Select1stIS2_ESt4lessIlESaIS2_EE14_M_create_nodeERKS2_ - fun:_ZNSt8_Rb_treeIlSt4pairIKliESt10_Select1stIS2_ESt4lessIlESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ - } - { - sigpnm - Memcheck:Leak - fun:malloc - fun:sigpnm - fun:sigpnmu - fun:snlpcgpgnm - fun:snigpgn - } - { - PyROOT::TPyBufferFactory::Instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT16TPyBufferFactory8InstanceEv - fun:_ZN6PyROOT20TFloatArrayConverter10FromMemoryEPv - fun:_ZN6PyROOT66_GLOBAL__N_bindings_pyroot_src_PropertyProxy.cxx_17E02520_A159A4176pp_getEPNS_13PropertyProxyEPNS_11ObjectProxyEP7_object - fun:PyObject_GenericGetAttr - } - { - ers::PluginManager::PluginManager() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers13PluginManagerC1Ev - fun:_ZN3ers13StreamManager8instanceEv - fun:_ZN3ers16SingletonCreatorINS_13StreamManagerEEC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFvSsENS0_21default_call_policiesENS_3mpl7vector3IvRS7_SsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFvSsENS0_21default_call_policiesENS_3mpl7vector3IvRS4_SsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFvSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS3_SsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FvSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - nlifigbl - Memcheck:Leak - fun:calloc - fun:nlifigbl - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - nlhtbnew - Memcheck:Leak - fun:calloc - fun:nlhtbnew - fun:nsgbliuc - fun:nsgblini - fun:nngsini_init_streams - } - { - TList::NewLink(TObject*,#TObjLink*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList7NewLinkEP7TObjectP8TObjLink - fun:_ZN5TList7AddLastEP7TObject - fun:_ZN5TList3AddEP7TObject - fun:_ZN5TCint19CreateListOfMethodsEP6TClass - } - { - void#Property::declareUpdateHandler(void#(MessageSvc::*)(Property=),#MessageSvc*) - Memcheck:Leak - fun:_Znwj - fun:_ZN8Property20declareUpdateHandlerI10MessageSvcEEvMT_FvRS_EPS2_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_E48091907FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - } - { - boost::python::objects::py_function::py_function::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#>(boost::python::detail::caller::*)()#const,#boost::python::default_call_policies,#boost::mpl::vector2=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6HeaderIPKjEEKFbvENS0_21default_call_policiesENS_3mpl7vector2IbRSA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6HeaderIPKjEEKFbvENS0_21default_call_policiesENS_3mpl7vector2IbRS7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESU_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6HeaderIPKjEEKFbvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IbRS6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_MS6_KFbvENS9_10def_helperIPKcSA_SA_SA_EEEEvPT_SH_T0_RKT1_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_ - fun:_ZN93_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_EventInfo_EventInfoDict_gen_rflx.cpp_9D2164D3_F02B1B6F14__EventID_dictEv - fun:_ZN93_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_EventInfo_EventInfoDict_gen_rflx.cpp_9D2164D3_F02B1B6F93_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_EventInfo_EventInfoDict_gen_rflx.cpp_9D2164D3_F02B1B6F12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - (anonymous#namespace)::Factory,#std::allocator#>,#ISvcLocator*)>::Func(void*,#void*,#std::vector#>#const=,#void*) - Memcheck:Leak - fun:_Znwj - fun:_ZN55_GLOBAL__N_.._src_AlgErrorAuditor.cpp_9D2164D3_171EDA857FactoryI15AlgErrorAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeIPvEEvRKNS_6ObjectERT_RKSt6vectorIS2_SaIS2_EE - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeE - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528132Declare_additional_CINT_typedefsEv - } - { - SG::BaseInfoBase::BaseInfoBase(unsigned#int,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN2SG12BaseInfoBaseC2EjRKSt9type_info - fun:_ZN2SG12BaseInfoImplI11DataHistoryEC1Ev - fun:_ZN2SG8BaseInfoI11DataHistoryE15instance_holderC1Ev - fun:_Z41__static_initialization_and_destruction_1ii - } - { - PyMem_Malloc - Memcheck:Leak - fun:malloc - fun:PyMem_Malloc - fun:calculate_path - fun:Py_GetProgramFullPath - fun:_PySys_Init - } - { - s_init - Memcheck:Leak - fun:malloc - fun:s_init - fun:type_call - fun:PyObject_Call - fun:PyEval_EvalFrameEx - } - { - TClassTable::TClassTable() - Memcheck:Leak - fun:_Znwj - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - } - { - TGenCollectionProxy::InitializeEx() - Memcheck:Leak - fun:_Znwj - fun:_ZN19TGenCollectionProxy12InitializeExEv - fun:_ZNK19TGenCollectionProxy10InitializeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#ers::OutputStream*#(*)(std::basic_string,#std::allocator#>#const=)>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPFPN3ers12OutputStreamERS3_EEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers12OutputStreamERS1_EESt10_Select1stIS8_ESt4lessISsESaIS8_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers12OutputStreamERS1_EESt10_Select1stIS8_ESt4lessISsESaIS8_EE14_M_create_nodeERKS8_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsPFPN3ers12OutputStreamERS1_EESt10_Select1stIS8_ESt4lessISsESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN22IOVPayloadContainer_p125CondAttrListCollection_p1ESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - ###obj:* - Memcheck:Cond - fun:_intel_fast_memcmp - obj:* - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorImSaImEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorImSaImEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - nldsfname - Memcheck:Leak - fun:malloc - fun:nldsfname - fun:nldsfcpargs - fun:nldsfrg - fun:nldsinit - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERKS8_ENS0_21default_call_policiesENS_3mpl7vector2IS8_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERKS5_ENS0_21default_call_policiesENS_3mpl7vector2IS5_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFN7eformat6helper7u32listERKS5_ENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESK_E - fun:_ZN5boost6python6detail14name_space_defIPFN7eformat6helper7u32listERKS5_ENS0_21default_call_policiesEEEvRNS0_3api6objectEPKcT_RKSt4pairIPKNS1_7keywordESK_ERKT0_SF_z - } - { - Reflex::VariableBuilder::VariableBuilder(char#const*,#Reflex::Type#const=,#unsigned#int,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex15VariableBuilderC1EPKcRKNS_4TypeEjj - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE - } - { - nngxidn_init_dname - Memcheck:Leak - fun:calloc - fun:nngxidn_init_dname - fun:nncpcin_maybe_init - fun:nnfgiinit - fun:nnfgauto - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex4EnumC1EPKcRKSt9type_infoj - fun:_ZN6Reflex15EnumTypeBuilderEPKcS1_RKSt9type_infoj - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectENS0_21default_call_policiesENS_3mpl7vector2IvS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector0IN4mpl_2naEEENS3_4sizeIS7_EENS0_7objects12value_holderISt4pairIKN7eformat6helper16SourceIdentifierENSD_11ROBFragmentIPKjEEEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSC_IPKNS1_7keywordESV_EPT1_PT_PT0_ - } - { - ltsini - Memcheck:Leak - fun:malloc - fun:ltsini - fun:kpummpin - fun:kpuenvcr - fun:OCIEnvCreate - } - { - std::basic_string,#std::allocator#>::_Rep::_S_create(unsigned#int,#unsigned#int,#std::allocator#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcjRKSaIcE - fun:_ZN5boost6python9converter82_GLOBAL__N__ZN5boost6python9converter18shared_ptr_deleterC2ENS0_6handleI7_objectEE23slot_rvalue_from_pythonISsNS2_25string_rvalue_from_pythonEE9constructEP7_objectPNS1_30rvalue_from_python_stage1_dataE - } - { - nnfgiinit - Memcheck:Leak - fun:calloc - fun:nnfgiinit - fun:nnfgauto - fun:nnfgainit - fun:nnfun2a - } - { - G__search_tagname - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - fun:_ZN5TCint17EnableAutoLoadingEv - } - { - TStorage::ObjectAlloc(unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN5TFree7AddFreeEP5TListxx - fun:_ZN5TFile8MakeFreeExx - } - { - ROOT::TGenericClassInfo::SetStreamer(void#(*)(TBuffer=,#void*)) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT17TGenericClassInfo11SetStreamerEPFvR7TBufferPvE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__Z19std_string_streamerR7TBufferPv - obj:/afs/cern.ch/sw/lcg/app/releases/ROOT/5.22.00d/slc4_ia32_gcc34_dbg/root/lib/libCore.so - } - { - lempint - Memcheck:Leak - fun:malloc - fun:lempint - fun:lemrist - fun:lpminitm - fun:lpminit - } - { - Reflex::PluginService::PluginService() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex13PluginServiceC1Ev - fun:_ZN6Reflex13PluginService8InstanceEv - fun:_ZN6Reflex13PluginService5DebugEv - fun:_ZN61_GLOBAL__N_.._src_ToyNextPassFilterTool.cxx_EF105EC1_6DFCE1AD27ToyNextPassFilterTool_dict5C1Ev - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper7u32listERKS8_RKNS6_8CheckSumESD_ENS0_21default_call_policiesENS_3mpl7vector4IS8_SA_SD_SD_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumESA_ENS0_21default_call_policiesENS_3mpl7vector4IS5_S7_SA_SA_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumESA_ENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESN_E - fun:_ZN5boost6python6detail14name_space_defIPFN7eformat6helper7u32listERKS5_RKNS3_8CheckSumESA_ENS0_21default_call_policiesEEEvRNS0_3api6objectEPKcT_RKSt4pairIPKNS1_7keywordESN_ERKT0_SI_z - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A34__GaudiHistos_GaudiAlgorithm__dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFhvENS0_21default_call_policiesENS_3mpl7vector2IhRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFhvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IhRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFhvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectN7eformat11SubDetectorEtENS0_21default_call_policiesENS_3mpl7vector4IvS7_S9_tEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectN7eformat11SubDetectorEtENS0_21default_call_policiesENS_3mpl7vector4IvS4_S6_tEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectN7eformat11SubDetectorEtENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESJ_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl10joint_viewINS1_5drop1INS1_9type_listIN7eformat11SubDetectorEtNS0_8optionalIhN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_EESB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_SB_EEEESC_EENSA_10integral_cIlLl2EEENS0_7objects12value_holderINS7_6helper16SourceIdentifierEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESW_EPT1_PT_PT0_ - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPN10CaloEMFrac10EMFracDataESt6vectorIS4_SaIS4_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - snlui - Memcheck:Leak - fun:calloc - fun:snlui - fun:nluicrt - fun:kokidgen - fun:kpuslsid - } - { - initreadline - Memcheck:Leak - fun:malloc - fun:initreadline - fun:_PyImport_LoadDynamicModule - fun:load_module - fun:import_submodule - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#std::vector#>#const=,#std::type_info#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeERKSt6vectorIS0_SaIS0_EERKSt9type_info - fun:_ZN6Reflex17FunctionDistillerIFvPKcS2_S2_iEE3GetEv - fun:_ZN6Reflex13ClassBuilderTI8TMemFileE17AddFunctionMemberIFvPKcS5_S5_iEEERS2_S5_PFvPvS8_RKSt6vectorIS8_SaIS8_EES8_ES8_S5_j - fun:_ZN52_GLOBAL__N_.._src_TMemFileDict.cpp_3B07A424_73007D166__initC1Ev - } - { - boost::python::objects::py_function::py_function,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>),#boost::python::default_call_policies,#boost::mpl::vector6,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>#>(boost::python::detail::caller,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>),#boost::python::default_call_policies,#boost::mpl::vector6,#std::allocator#>,#std::basic_string,#std::allocator#>,#EventStorage::run_parameters_record,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsSsN12EventStorage21run_parameters_recordESt6vectorISsSaISsEEENS0_21default_call_policiesENS_3mpl7vector6IvS7_SsSsS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsSsN12EventStorage21run_parameters_recordESt6vectorISsSaISsEEENS0_21default_call_policiesENS_3mpl7vector6IvS4_SsSsS6_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsSsN12EventStorage21run_parameters_recordESt6vectorISsSaISsEEENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESM_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector4IKSsS5_KN12EventStorage21run_parameters_recordEKSt6vectorISsSaISsEEEENS3_4sizeISD_EENS0_7objects12value_holderINS6_10DataWriterEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordEST_EPT1_PT_PT0_ - } - { - (anonymous#namespace)::CreateCStringExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE21CreateCStringExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - Reflex::TypeTemplateName::TypeTemplateName(char#const*,#Reflex::TypeTemplateImpl*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16TypeTemplateNameC1EPKcPNS_16TypeTemplateImplE - fun:_ZN6Reflex16TypeTemplateImplC1EPKcRKNS_5ScopeESt6vectorISsSaISsEES8_ - fun:_ZN6Reflex21ClassTemplateInstanceC1EPKcjRKSt9type_infoj - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - boost::python::objects::py_function::py_function,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN3daq11RawFileNameEFbSsENS0_21default_call_policiesENS_3mpl7vector3IbRS7_SsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN3daq11RawFileNameEFbSsENS0_21default_call_policiesENS_3mpl7vector3IbRS4_SsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN3daq11RawFileNameEFbSsENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IbRS3_SsEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN3daq11RawFileNameENS0_6detail13not_specifiedES5_S5_E8def_implIS3_MS3_FbSsENS4_10def_helperIPKcS5_S5_S5_EEEEvPT_SC_T0_RKT1_z - } - { - ThreadGaudi::ThreadGaudi() - Memcheck:Leak - fun:_Znwj - fun:_ZN11ThreadGaudiC1Ev - fun:_ZN11ThreadGaudi8instanceEv - fun:_ZN2SG29getDataSourcePointerFromGaudiERKSs - fun:_ZN2SG20getDataSourcePointerERKSs - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKP7TObjectP7_objectEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIP7TObjectSt4pairIKS1_P7_objectESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIP7TObjectSt4pairIKS1_P7_objectESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeERKS6_ - fun:_ZNSt8_Rb_treeIP7TObjectSt4pairIKS1_P7_objectESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE9_M_insertEPSt18_Rb_tree_node_baseSE_RKS6_ - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN6PyROOT10TParameterEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN6PyROOT10TParameterESaIS1_EE11_M_allocateEj - fun:_ZNSt6vectorIN6PyROOT10TParameterESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_ - fun:_ZNSt6vectorIN6PyROOT10TParameterESaIS1_EE6insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_ - } - { - lfvini1 - Memcheck:Leak - fun:malloc - fun:lfvini1 - fun:lfvinit - fun:kpummpin - fun:kpuenvcr - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector3#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector3#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN12EventStorage10DataWriterERKN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector3IvS8_SF_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN12EventStorage10DataWriterERKN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector3IvS5_SC_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN12EventStorage10DataWriterERKN7eformat17FullEventFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS4_SB_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_PFvRS3_RKN7eformat17FullEventFragmentIPKjEEENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SM_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>=),#boost::python::default_call_policies,#boost::mpl::vector2#>=>#>#>(boost::python::detail::caller#>=),#boost::python::default_call_policies,#boost::mpl::vector2#>=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper16SourceIdentifierERSt4pairIKS8_NS6_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SG_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper16SourceIdentifierERSt4pairIKS5_NS3_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SD_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKS6_IPKNS1_7keywordESY_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper16SourceIdentifierERSt4pairIKS4_NS2_11ROBFragmentIPKjEEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SC_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt4pairIKN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEEENS0_6detail13not_specifiedESD_SD_E8def_implISB_PFS5_RSB_ENSC_10def_helperIPKcSD_SD_SD_EEEEvPT_SL_T0_RKT1_z - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator*,#std::vector,#std::allocator#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIPSt4pairIj10LArDAC2uAPESt6vectorIS5_SaIS5_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - G__herits::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:_ZN4ROOT6Cintex16CINTClassBuilder17Setup_inheritanceERN6Reflex6ObjectE - fun:_ZN4ROOT6Cintex16CINTClassBuilder17Setup_inheritanceEv - } - { - nrigbni - Memcheck:Leak - fun:malloc - fun:nrigbni - fun:nrigbi - fun:nigini1 - fun:niqname - } - { - ErrorHandler - Memcheck:Leak - fun:_Znaj - fun:ErrorHandler - fun:_Z7WarningPKcS0_z - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_iib - fun:_ZN6TClassC1EPKcsS1_S1_iib - } - { - Reflex::ClassBuilderImpl::AddEnum(char#const*,#char#const*,#std::type_info#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN6Reflex12ClassBuilder7AddEnumEPKcS2_PKSt9type_infoj - fun:_ZN109_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_LArRawConditions1_LArRawConditionsDict1_gen_rflx.cpp_9D2164D3_E58A64A243__LArConditionsSubset_LArSingleFloatP__dictEv - fun:_ZN109_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_LArRawConditions1_LArRawConditionsDict1_gen_rflx.cpp_9D2164D3_E58A64A2109_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_LArRawConditions1_LArRawConditionsDict1_gen_rflx.cpp_9D2164D3_E58A64A212DictionariesC1Ev - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvRN12EventStorage10DataWriterERN7eformat5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS8_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvRN12EventStorage10DataWriterERN7eformat5write17FullEventFragmentEENS0_21default_call_policiesENS_3mpl7vector3IvS5_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFvRN12EventStorage10DataWriterERN7eformat5write17FullEventFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvS4_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_PFvRS3_RN7eformat5write17FullEventFragmentEENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SJ_T0_RKT1_z - } - { - __gnu_cxx::new_allocator,#std::allocator#>,#Athena::PackageInfo,#std::basic_string,#std::allocator#>,#boost::tuples::null_type,#boost::tuples::null_type,#boost::tuples::null_type,#boost::tuples::null_type,#boost::tuples::null_type,#boost::tuples::null_type>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN5boost6tuples5tupleImSsN6Athena11PackageInfoESsNS2_9null_typeES6_S6_S6_S6_S6_EEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN5boost6tuples5tupleImSsN6Athena11PackageInfoESsNS1_9null_typeES5_S5_S5_S5_S5_EESaIS6_EE11_M_allocateEj - fun:_ZNSt6vectorIN5boost6tuples5tupleImSsN6Athena11PackageInfoESsNS1_9null_typeES5_S5_S5_S5_S5_EESaIS6_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS6_S8_EERKS6_ - fun:_ZNSt6vectorIN5boost6tuples5tupleImSsN6Athena11PackageInfoESsNS1_9null_typeES5_S5_S5_S5_S5_EESaIS6_EE9push_backERKS6_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataReaderEKFyvENS0_21default_call_policiesENS_3mpl7vector2IyRS7_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataReaderEKFyvENS0_21default_call_policiesENS_3mpl7vector2IyRS4_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESR_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataReaderEKFyvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IyRS3_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataReaderENS_10shared_ptrIS3_EENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedEE8def_implIS3_MS3_KFyvENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SG_T0_RKT1_z - } - { - ers::Configuration::instance() - Memcheck:Leak - fun:_Znwj - fun:_ZN3ers13Configuration8instanceEv - fun:_ZN3ers16SingletonCreatorINS_13ConfigurationEEC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN53_GLOBAL__N_.._src_Configuration.cxx_9D2164D3_7E41611E20ers_NoValue_instanceE - } - { - TMessageHandler::HandleMessage(int,#TObject#const*) - Memcheck:Leak - fun:_Znaj - fun:_ZN15TMessageHandler13HandleMessageEiPK7TObject - fun:_ZN5TROOT7MessageEiPK7TObject - fun:_ZNK7TObject5ErrorEPKcS1_z - fun:_ZN5TFile4InitEb - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper16SourceIdentifierERKNS6_5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS8_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper16SourceIdentifierERKNS3_5write11ROBFragmentEENS0_21default_call_policiesENS_3mpl7vector2IS5_S9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper16SourceIdentifierERKNS2_5write11ROBFragmentEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_S8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS2_6helper16SourceIdentifierERKS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SH_T0_RKT1_z - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRKN7eformat8CheckSumERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector3IjS9_SC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRKN7eformat8CheckSumERKNS0_4listEENS0_21default_call_policiesENS_3mpl7vector3IjS6_S9_EEEENS0_3api6objectET_RKT0_RKT1_ - fun:_ZN5boost6python13make_functionIPFjRKN7eformat8CheckSumERKNS0_4listEEEENS0_3api6objectET_ - fun:_ZN5boost6python6detail14make_function1IPFjRKN7eformat8CheckSumERKNS0_4listEEEENS0_3api6objectET_z - } - { - int#PyROOT::BuildRootClassDict(PyROOT::TScopeAdapter#const=,#_object*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT18BuildRootClassDictINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEiRKT_P7_object - fun:_ZN6PyROOT23MakeRootClassFromStringINS_13TScopeAdapterENS_12TBaseAdapterENS_14TMemberAdapterEEEP7_objectRKSsS5_ - fun:_ZN6PyROOT13MakeRootClassEP7_objectS1_ - fun:PyCFunction_Call - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorItSaItEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorItSaItEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentrootcint_vector - } - { - boost::python::objects::py_function::py_function,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#>(boost::python::detail::caller,#std::allocator#>),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFvP7_objectSsENS0_21default_call_policiesENS_3mpl7vector3IvS7_SsEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFvP7_objectSsENS0_21default_call_policiesENS_3mpl7vector3IvS4_SsEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESQ_ET2_ - fun:_ZN5boost6python6detail27make_keyword_range_functionIPFvP7_objectSsENS0_21default_call_policiesEEENS0_3api6objectET_RKT0_RKSt4pairIPKNS1_7keywordESH_E - fun:_ZN5boost6python6detail30make_keyword_range_constructorINS_3mpl7vector1ISsEENS3_4sizeIS5_EENS0_7objects12value_holderIN3daq11RawFileNameEEENS0_21default_call_policiesEEENS0_3api6objectERKT2_RKSt4pairIPKNS1_7keywordESM_EPT1_PT_PT0_ - } - { - _dlerror_run - Memcheck:Leak - fun:calloc - fun:_dlerror_run - fun:dlopen@@GLIBC_2.1 - fun:_PyImport_GetDynLoadFunc - fun:_PyImport_LoadDynamicModule - } - { - TOptionListItem::TOptionListItem(TDataMember*,#long,#long,#long,#char#const*,#char#const*) - Memcheck:Leak - fun:_Znaj - fun:_ZN15TOptionListItemC1EP11TDataMemberlllPKcS3_ - fun:_ZN11TDataMemberC1EPvP6TClass - fun:_ZN5TCint23CreateListOfDataMembersEP6TClass - fun:_ZN6TClass20GetListOfDataMembersEv - } - { - G__memfunc_next - Memcheck:Leak - fun:malloc - fun:G__memfunc_next - fun:G__search_tagname - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - } - { - boost::python::objects::py_function::py_function#>=),#boost::python::default_call_policies,#boost::mpl::vector2#>=>#>#>(boost::python::detail::caller#>=),#boost::python::default_call_policies,#boost::mpl::vector2#>=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRSt6vectorIN7eformat6helper9StreamTagESaIS9_EEENS0_21default_call_policiesENS_3mpl7vector2IjSC_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRSt6vectorIN7eformat6helper9StreamTagESaIS6_EEENS0_21default_call_policiesENS_3mpl7vector2IjS9_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESV_ET2_ - fun:_ZN5boost6python13make_functionIPFjRSt6vectorIN7eformat6helper9StreamTagESaIS5_EEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjS8_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFjRS7_ENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SH_T0_RKT1_z - } - { - __fopen_internal - Memcheck:Leak - fun:malloc - fun:__fopen_internal - fun:fopen@@GLIBC_2.1 - fun:G__loadfile - fun:G__include_file - } - { - (anonymous#namespace)::CreateVoidExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE18CreateVoidExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - Reflex::ScopeBase::ScopeBase(char#const*,#Reflex::TYPE) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex9ScopeBaseC2EPKcNS_4TYPEE - fun:_ZN6Reflex5ClassC1EPKcjRKSt9type_infojNS_4TYPEE - fun:_ZN6Reflex16ClassBuilderImplC1EPKcRKSt9type_infojjNS_4TYPEE - fun:_ZN6Reflex12ClassBuilderC1EPKcRKSt9type_infojjNS_4TYPEE - } - { - Alg_ComputeModQ_GHash - Memcheck:Cond - fun:CMP_OctetStringToCMPInt - fun:Alg_ComputeModQ_GHash - fun:A_X931RandomGenerateBytes - fun:ztcr2rnd - fun:ztcsh - } - { - __gnu_cxx::new_allocator#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKjP25AthenaRootConverterHandleEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeIjSt4pairIKjP25AthenaRootConverterHandleESt10_Select1stIS4_ESt4lessIjESaIS4_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeIjSt4pairIKjP25AthenaRootConverterHandleESt10_Select1stIS4_ESt4lessIjESaIS4_EE14_M_create_nodeERKS4_ - fun:_ZNSt8_Rb_treeIjSt4pairIKjP25AthenaRootConverterHandleESt10_Select1stIS4_ESt4lessIjESaIS4_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS4_ - } - { - (anonymous#namespace)::Factory,#std::allocator#>,#ISvcLocator*)>::Func(void*,#void*,#std::vector#>#const=,#void*) - Memcheck:Leak - fun:_Znwj - fun:_ZN51_GLOBAL__N_.._src_NameAuditor.cpp_9D2164D3_D73FEC677FactoryI11NameAuditorFP8IAuditorSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - fun:_ZNK6Reflex6Member6InvokeIPvEEvRKNS_6ObjectERT_RKSt6vectorIS2_SaIS2_EE - } - { - Reflex::ClassBuilderImpl::AddTypedef(Reflex::Type#const=,#char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex16ClassBuilderImpl10AddTypedefERKNS_4TypeEPKc - fun:_ZN6Reflex12ClassBuilder10AddTypedefERKNS_4TypeEPKc - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE50__std__vector_coral__AttributeSpecificationp__dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - } - { - lfvopen - Memcheck:Leak - fun:malloc - fun:lfvopen - fun:SlfMmap - fun:ldimtzd - fun:kpuiniSG - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP10IAlgorithmEE8allocateEjPKv - fun:_ZNSt10_List_baseIP10IAlgorithmSaIS1_EE11_M_get_nodeEv - fun:_ZNSt4listIP10IAlgorithmSaIS1_EE14_M_create_nodeERKS1_ - fun:_ZNSt4listIP10IAlgorithmSaIS1_EE9_M_insertESt14_List_iteratorIS1_ERKS1_ - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex8FunctionC1ERKNS_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_infoNS_4TYPEE - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN3ers5IssueEE8allocateEjPKv - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EE16_M_allocate_nodeEv - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EE15_M_create_nodesEPPS2_S6_ - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EE17_M_initialize_mapEj - } - { - boost::python::objects::py_function::py_function,#boost::mpl::vector2#>#>(boost::python::detail::caller,#boost::mpl::vector2#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEKFPKNS7_11ROBFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2ISB_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEKFPKNS4_11ROBFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEKFPKNS3_11ROBFragmentEvENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS7_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFPKNS3_11ROBFragmentEvENS5_10def_helperINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEES6_S6_S6_EEEEvPT_PKcT0_RKT1_z - } - { - std::vector#>::_M_insert_aux(__gnu_cxx::__normal_iterator#>#>,#boost::(anonymous#namespace)::cache_element#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZNSt6vectorIN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE13cache_elementESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE13cache_elementESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZN5boost67_GLOBAL__N_libs_python_src_object_inheritance.cpp_CF14568D_462478FE12convert_typeEPvNS_6python9type_infoES3_b - fun:_ZN5boost6python7objects16find_static_typeEPvNS0_9type_infoES3_ - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPtSt6vectorItSaItEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - G__savestring - Memcheck:Leak - fun:malloc - fun:G__savestring - fun:G__memfunc_setup_imp - fun:G__memfunc_setup - fun:G__usermemfunc_setup - } - { - ztceb_decblk - Memcheck:Value4 - fun:ztceadecbk - fun:ztceb_decblk - fun:ztcebn - fun:ztcen - fun:ztcedec - } - { - TStringRef::GetRep(int,#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TStringC1EPKc - fun:_ZN7TEnvRec11ExpandValueEPKc - fun:_ZN7TEnvRecC1EPKcS1_S1_9EEnvLevel - } - { - Reflex::Environ,#std::allocator#>#const,#HepGeom::Transform3D>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironISt17_Rb_tree_iteratorISt4pairIKSsN7HepGeom11Transform3DEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - Reflex::Any::Holder::Clone()#const - Memcheck:Leak - fun:_Znwj - fun:_ZNK6Reflex3Any6HolderIjE5CloneEv - fun:_ZN6Reflex3AnyC1ERKS0_ - fun:_ZN6Reflex3AnyaSERKS0_ - fun:_ZN6Reflex16PropertyListImpl11AddPropertyEjRKNS_3AnyE - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write11ROBFragmentEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write11ROBFragmentEKFjvENS0_21default_call_policiesENS_3mpl7vector2IjRS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write11ROBFragmentEKFjvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IjRS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write11ROBFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFjvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - (anonymous#namespace)::CreateDoubleExecutor() - Memcheck:Leak - fun:_Znwj - fun:_ZN38_GLOBAL__N__ZN6PyROOT14gExecFactoriesE20CreateDoubleExecutorEv - fun:_ZN6PyROOT14CreateExecutorERKSs - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitExecutor_ERPNS_9TExecutorE - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPlSt6vectorIlSaIlEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_4listERKN7eformat6helper7u32listERKNS0_5sliceEENS0_21default_call_policiesENS_3mpl7vector3IS6_SB_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_4listERKN7eformat6helper7u32listERKNS0_5sliceEENS0_21default_call_policiesENS_3mpl7vector3IS3_S8_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_4listERKN7eformat6helper7u32listERKNS0_5sliceEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IS2_S7_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper7u32listENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS0_4listERKS4_RKNS0_5sliceEENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SJ_T0_RKT1_z - } - { - TGenCollectionProxy::TGenCollectionProxy(TGenCollectionProxy#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN19TGenCollectionProxyC2ERKS_ - fun:_ZN15TGenVectorProxyC1ERK19TGenCollectionProxy - fun:_ZNK19TGenCollectionProxy8GenerateEv - fun:_ZN14TBranchElement18GetCollectionProxyEv - } - { - G__search_tagname - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - fun:_ZN5TCint17EnableAutoLoadingEv - } - { - Reflex::TypeBuilder(char#const*,#unsigned#int) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE - obj:/afs/cern.ch/sw/lcg/app/releases/COOL/COOL_2_8_2/slc4_ia32_gcc34_dbg/lib/liblcg_PyCoolDict.so - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper16SourceIdentifierERKNS6_6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper16SourceIdentifierERKNS3_6HeaderIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper16SourceIdentifierERKNS2_6HeaderIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6HeaderIPKjEENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedESA_E8def_implIS6_PFNS2_6helper16SourceIdentifierERKS6_ENS9_10def_helperIPKcSA_SA_SA_EEEEvPT_SL_T0_RKT1_z - } - { - nlpains - Memcheck:Leak - fun:malloc - fun:nlpains - fun:nlstdggo - fun:nlstdgg - fun:nigini1 - } - { - TStorage::ReAlloc(void*,#unsigned#int,#unsigned#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage7ReAllocEPvjj - fun:_ZN9TObjArray6ExpandEi - fun:_ZN9TObjArray14AddAtAndExpandEP7TObjecti - fun:_ZN9TObjArray7AddLastEP7TObject - } - { - G__params::operator[](int) - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup_imp - } - { - Property*#PropertyMgr::declareProperty(std::basic_string,#std::allocator#>#const=,#bool=,#std::basic_string,#std::allocator#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN11PropertyMgr15declarePropertyIbEEP8PropertyRKSsRT_S4_ - fun:_ZNK7Auditor15declarePropertyIbEEP8PropertyRKSsRT_S4_ - fun:_ZN7AuditorC2ERKSsP11ISvcLocator - fun:_ZN15AlgErrorAuditorC1ERKSsP11ISvcLocator - } - { - sltstidinit - Memcheck:Leak - fun:malloc - fun:sltstidinit - fun:lfvGetSlctx - fun:lfvini1 - fun:lfvinit - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat5write17FullEventFragmentEFvhENS0_21default_call_policiesENS_3mpl7vector3IvRS8_hEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat5write17FullEventFragmentEFvhENS0_21default_call_policiesENS_3mpl7vector3IvRS5_hEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat5write17FullEventFragmentEFvhENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IvRS4_hEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat5write17FullEventFragmentENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_FvhENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SD_T0_RKT1_z - } - { - __gnu_cxx::new_allocator,#std::allocator#>#const,#TClass*>#>#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsP6TClassEEE8allocateEjPKv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsP6TClassESt10_Select1stIS4_ESt4lessISsESaIS4_EE11_M_get_nodeEv - fun:_ZNSt8_Rb_treeISsSt4pairIKSsP6TClassESt10_Select1stIS4_ESt4lessISsESaIS4_EE14_M_create_nodeERKS4_ - fun:_ZNSt8_Rb_treeISsSt4pairIKSsP6TClassESt10_Select1stIS4_ESt4lessISsESaIS4_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS4_ - } - { - strdup - Memcheck:Leak - fun:malloc - fun:strdup - fun:Py_InitializeEx - fun:Py_Initialize - fun:Py_Main - } - { - G__set_class_autoloading_table - Memcheck:Leak - fun:malloc - fun:G__set_class_autoloading_table - fun:_ZN5TCint14LoadLibraryMapEPKc - fun:_ZN5TCint17EnableAutoLoadingEv - fun:_Z18G__G__Meta_156_0_8P8G__valuePKcP8G__parami - } - { - Reflex::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex7EnvironIN9__gnu_cxx17__normal_iteratorIP20DataHeaderElement_p3St6vectorIS3_SaIS3_EEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - SimpleProperty#>::SimpleProperty(BoundedVerifier) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIi15BoundedVerifierIiEEC1ES1_ - fun:_ZN14ApplicationMgrC1EP10IInterface - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_9BE5AFB07FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvS6_RKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK6Reflex14FunctionMember6InvokeERKNS_6ObjectEPS1_RKSt6vectorIPvSaIS6_EE - } - { - T_malloc - Memcheck:Leak - fun:malloc - fun:T_malloc - fun:CMP_reallocNoCopy - fun:CMP_OctetStringToCMPInt - fun:A_X931RandomInit - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPN6PyROOT10TConverterEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIPN6PyROOT10TConverterESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIPN6PyROOT10TConverterESaIS2_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIPN6PyROOT10TConverterESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - } - { - SimpleProperty#>::SimpleProperty(BoundedVerifier) - Memcheck:Leak - fun:_Znwj - fun:_ZN14SimplePropertyIj15BoundedVerifierIjEEC1ES1_ - fun:_ZN10MessageSvcC1ERKSsP11ISvcLocator - fun:_ZN10SvcFactoryI10MessageSvcE6createERKSsP11ISvcLocator - fun:_ZN61_GLOBAL__N_.._src_MessageSvc_MessageSvc.cpp_9D2164D3_E48091907FactoryI10MessageSvcFP8IServiceSsP11ISvcLocatorEE4FuncEPvS8_RKSt6vectorIS8_SaIS8_EES8_ - } - { - __gnu_cxx::new_allocator::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIPPN3ers5IssueEE8allocateEjPKv - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EE15_M_allocate_mapEj - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EE17_M_initialize_mapEj - fun:_ZNSt11_Deque_baseIPN3ers5IssueESaIS2_EEC2ERKS3_j - } - { - ROOT::Cintex::CINTClassBuilder::CINTClassBuilder(Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Cintex16CINTClassBuilderC1ERKN6Reflex4TypeE - fun:_ZN4ROOT6Cintex16CINTClassBuilder3GetERKN6Reflex4TypeE - fun:_ZN55_GLOBAL__N_cint_cintex_src_Cintex.cxx_EF105EC1_30BF528113Cintex_dict_tC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - function_call - Memcheck:Leak - fun:malloc - fun:function_call - fun:PyObject_Call - fun:PyEval_EvalFrameEx - fun:PyEval_EvalCodeEx - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7TypedefC1EPKcRKNS_4TypeENS_4TYPEES5_ - fun:_ZN6Reflex8InstanceC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - ESLMultiFile::openNext() - Memcheck:Leak - fun:_Znwj - fun:_ZN12ESLMultiFile8openNextEv - fun:_ZN12EventStorage20DataReaderController10initializeEv - fun:_ZN12EventStorage20DataReaderControllerC1EP5fReadSs - fun:_Z14pickDataReaderSs - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPmSt6vectorImSaImEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - boost::python::objects::py_function::py_function#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#>(boost::python::detail::caller#const=),#boost::python::default_call_policies,#boost::mpl::vector2#const=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFN7eformat6helper16SourceIdentifierERKNS6_11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS8_SE_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFN7eformat6helper16SourceIdentifierERKNS3_11ROBFragmentIPKjEEENS0_21default_call_policiesENS_3mpl7vector2IS5_SB_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESX_ET2_ - fun:_ZN5boost6python13make_functionIPFN7eformat6helper16SourceIdentifierERKNS2_11ROBFragmentIPKjEEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS4_SA_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat11ROBFragmentIPKjEENS0_5basesINS2_6HeaderIS5_EEN4mpl_5void_ESB_SB_SB_SB_SB_SB_SB_SB_EENS0_6detail13not_specifiedESE_E8def_implIS6_PFNS2_6helper16SourceIdentifierERKS6_ENSD_10def_helperIPKcSE_SE_SE_EEEEvPT_SP_T0_RKT1_z - } - { - xmalloc - Memcheck:Leak - fun:malloc - fun:xmalloc - fun:rl_initialize - fun:initreadline - fun:_PyImport_LoadDynamicModule - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_S2_ - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A17__IHistoTool_dictEv - fun:_ZN84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A84_GLOBAL__N_.._i686_slc4_gcc34_dbg_dict_GaudiPython_kernel_dict.cpp_9D2164D3_B5DBB98A12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - TApplication::TApplication(char#const*,#int*,#char**,#void*,#int) - Memcheck:Leak - fun:_Znaj - fun:_ZN12TApplicationC2EPKcPiPPcPvi - fun:_ZN6PyROOT18TPyROOTApplicationC1EPKcPiPPcb - fun:_ZN6PyROOT18TPyROOTApplication23CreatePyROOTApplicationEb - fun:_Z20G__G__PyROOT_122_0_1P8G__valuePKcP8G__parami - } - { - __gnu_cxx::new_allocator#>::allocate(unsigned#int,#void#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PyMethodDefEE8allocateEjPKv - fun:_ZNSt10_List_baseI11PyMethodDefSaIS0_EE11_M_get_nodeEv - fun:_ZNSt4listI11PyMethodDefSaIS0_EE14_M_create_nodeERKS0_ - fun:_ZNSt4listI11PyMethodDefSaIS0_EE9_M_insertESt14_List_iteratorIS0_ERKS0_ - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN7eformat6helper16SourceIdentifierEKFNS6_16SubDetectorGroupEvENS0_21default_call_policiesENS_3mpl7vector2IS9_RS8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN7eformat6helper16SourceIdentifierEKFNS3_16SubDetectorGroupEvENS0_21default_call_policiesENS_3mpl7vector2IS6_RS5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIMN7eformat6helper16SourceIdentifierEKFNS2_16SubDetectorGroupEvENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS5_RS4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper16SourceIdentifierENS0_6detail13not_specifiedES6_S6_E8def_implIS4_MS4_KFNS2_16SubDetectorGroupEvENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SE_T0_RKT1_z - } - { - Reflex::TypeName::TypeName(char#const*,#Reflex::TypeBase*,#std::type_info#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeNameC1EPKcPNS_8TypeBaseEPKSt9type_info - fun:_ZN6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo5SetupEv - fun:_ZN4ROOT6Cintex17ROOTClassEnhancer5SetupEv - } - { - ztceb_encblk - Memcheck:Value4 - fun:ztceaencbk - fun:ztceb_encblk - fun:ztcebn - fun:ztcen - fun:ztceenc - } - { - boost::python::objects::py_function::py_function=#(*)(std::pair#>=),#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>,#boost::mpl::vector2=,#std::pair#>=>#>#>(boost::python::detail::caller=#(*)(std::pair#>=),#boost::python::return_internal_reference<1u,#boost::python::default_call_policies>,#boost::mpl::vector2=,#std::pair#>=>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFRN7eformat11ROBFragmentIPKjEERSt4pairIKNS6_6helper16SourceIdentifierESA_EENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2ISB_SH_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFRN7eformat11ROBFragmentIPKjEERSt4pairIKNS3_6helper16SourceIdentifierES7_EENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS_3mpl7vector2IS8_SE_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKS9_IPKNS1_7keywordES11_ET2_ - fun:_ZN5boost6python13make_functionIPFRN7eformat11ROBFragmentIPKjEERSt4pairIKNS2_6helper16SourceIdentifierES6_EENS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS7_SD_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt4pairIKN7eformat6helper16SourceIdentifierENS3_11ROBFragmentIPKjEEENS0_6detail13not_specifiedESD_SD_E8def_implISB_PFRSA_RSB_ENSC_10def_helperINS0_25return_internal_referenceILj1ENS0_21default_call_policiesEEESD_SD_SD_EEEEvPT_PKcT0_RKT1_z - } - { - ROOT::TCollectionProxyInfo::Environ<__gnu_cxx::__normal_iterator,#std::allocator#>*,#std::vector,#std::allocator#>,#std::allocator,#std::allocator#>#>#>#>#>::Create() - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo7EnvironIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEE6CreateEv - fun:_ZNK19TGenCollectionProxy7Method06invokeEv - fun:_ZN19TGenCollectionProxy9PushProxyEPv - fun:_ZN23TVirtualCollectionProxy8TPushPopC1EPS_Pv - } - { - nnftboot - Memcheck:Leak - fun:calloc - fun:nnftboot - fun:nnfgrne - fun:nlolgobj - fun:nnfun2a - } - { - PyROOT::TMethodHolder::InitCallFunc_() - Memcheck:Leak - fun:_Znwj - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE13InitCallFunc_Ev - fun:_ZN6PyROOT13TMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEE10InitializeEv - fun:_ZN6PyROOT18TClassMethodHolderINS_13TScopeAdapterENS_14TMemberAdapterEEclEPNS_11ObjectProxyEP7_objectS7_ - fun:_ZN6PyROOT64_GLOBAL__N_bindings_pyroot_src_MethodProxy.cxx_17E02520_1BE785DB7mp_callEPNS_11MethodProxyEP7_objectS4_ - } - { - Reflex::FunctionTypeBuilder(Reflex::Type#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex19FunctionTypeBuilderERKNS_4TypeES2_ - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE50__cool__PayloadSpecificationTooManyBlobFields_dictEv - fun:_ZN60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE60_GLOBAL__N__ZN4cool6PyCool7Helpers10IObjectPtrEPNS_7IObjectE12DictionariesC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - } - { - TCint::CreateListOfMethods(TClass*) - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint19CreateListOfMethodsEP6TClass - fun:_ZN6TClass16GetListOfMethodsEv - fun:_ZN6TClass14GetClassMethodEl - fun:_ZN6TClass22GetMethodWithPrototypeEPKcS1_ - } - { - boost::python::objects::py_function::py_function#>#const=,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector3#>#const=,#unsigned#int>#>#>(boost::python::detail::caller#>#const=,#unsigned#int),#boost::python::default_call_policies,#boost::mpl::vector3#>#const=,#unsigned#int>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFjRKSt6vectorIN7eformat6helper9StreamTagESaIS9_EEjENS0_21default_call_policiesENS_3mpl7vector3IjSD_jEEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFjRKSt6vectorIN7eformat6helper9StreamTagESaIS6_EEjENS0_21default_call_policiesENS_3mpl7vector3IjSA_jEEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESW_ET2_ - fun:_ZN5boost6python13make_functionIPFjRKSt6vectorIN7eformat6helper9StreamTagESaIS5_EEjENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3IjS9_jEEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_ISt6vectorIN7eformat6helper9StreamTagESaIS5_EENS0_6detail13not_specifiedES9_S9_E8def_implIS7_PFjRKS7_jENS8_10def_helperIPKcS9_S9_S9_EEEEvPT_SI_T0_RKT1_z - } - { - Reflex::TypeBase::TypeBase(char#const*,#unsigned#int,#Reflex::TYPE,#std::type_info#const=,#Reflex::Type#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex8TypeBaseC2EPKcjNS_4TYPEERKSt9type_infoRKNS_4TypeE - fun:_ZN6Reflex7PointerC1ERKNS_4TypeERKSt9type_info - fun:_ZN6Reflex14PointerBuilderERKNS_4TypeERKSt9type_info - fun:_ZN4ROOT6Cintex21ROOTClassEnhancerInfo5SetupEv - } - { - Reflex::MemberTemplateName::MemberTemplateName(char#const*,#Reflex::MemberTemplateImpl*) - Memcheck:Leak - fun:_Znwj - fun:_ZN6Reflex18MemberTemplateNameC1EPKcPNS_18MemberTemplateImplE - fun:_ZN6Reflex18MemberTemplateImplC1EPKcRKNS_5ScopeERKSt6vectorISsSaISsEESA_ - fun:_ZN6Reflex30FunctionMemberTemplateInstanceC1EPKcRKNS_4TypeEPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S2_jRKNS_5ScopeE - fun:_ZN6Reflex15FunctionBuilderC1ERKNS_4TypeEPKcPFvPvS6_RKSt6vectorIS6_SaIS6_EES6_ES6_S5_h - } - { - boost::python::objects::py_function::py_function#>#>(boost::python::detail::caller#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIPFNS0_4listERN7eformat6helper12DetectorMaskEENS0_21default_call_policiesENS_3mpl7vector2IS6_SA_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIPFNS0_4listERN7eformat6helper12DetectorMaskEENS0_21default_call_policiesENS_3mpl7vector2IS3_S7_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordEST_ET2_ - fun:_ZN5boost6python13make_functionIPFNS0_4listERN7eformat6helper12DetectorMaskEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector2IS2_S6_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN7eformat6helper12DetectorMaskENS0_6detail13not_specifiedES6_S6_E8def_implIS4_PFNS0_4listERS4_ENS5_10def_helperIPKcS6_S6_S6_EEEEvPT_SF_T0_RKT1_z - } - { - G__call_setup_funcs - Memcheck:Leak - fun:_Znwj - fun:G__call_setup_funcs - fun:_ZN29G__cpp_setup_initG__MetaUtilsC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_G__set_cpp_environmentG__MetaUtils - } - { - fdopen@@GLIBC_2.1 - Memcheck:Leak - fun:malloc - fun:fdopen@@GLIBC_2.1 - fun:tmpfile@@GLIBC_2.1 - fun:G__load_text - fun:_ZNK5TCint8LoadTextEPKc - } - { - _dl_new_object - Memcheck:Leak - fun:malloc - fun:_dl_new_object - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:dl_open_worker - } - { - ROOT::TCollectionProxyInfo*#ROOT::TCollectionProxyInfo::Generate#>#>#>(ROOT::TCollectionProxyInfo::Pushback#>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT20TCollectionProxyInfo8GenerateINS0_8PushbackISt6vectorIjSaIjEEEEEEPS0_RKT_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPKSt6vectorIjSaIjEE - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK21SetWindowAttributes_t - } - { - CaloTowerBuilderTool::execute(CaloTowerContainer*,#CaloCellContainer#const*) - Memcheck:Cond - fun:_ZN14CaloTowerStore14tower_iteratorppEv - fun:_ZN20CaloTowerBuilderTool7executeEP18CaloTowerContainerPK17CaloCellContainer - fun:_ZN18CaloTowerAlgorithm7executeEv - fun:_ZN9Algorithm10sysExecuteEv - fun:_ZN12AthSequencer7executeEv - } - { - SlfMmap - Memcheck:Leak - fun:malloc - fun:SlfMmap - fun:ldimtzd - fun:kpuiniSG - fun:kpummpin - } - { - ExpatCoreParser::do_comment(char#const*) - Memcheck:Leak - fun:_Znwj - fun:_ZN15ExpatCoreParser10do_commentEPKc - fun:_ZN15ExpatCoreParser7commentEPvPKc - fun:reportComment - fun:doContent - } - { - boost::python::objects::py_function::py_function,#std::allocator#>#(EventStorage::DataWriter::*)(EventStorage::FileStatus),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>,#EventStorage::DataWriter=,#EventStorage::FileStatus>#>#>(boost::python::detail::caller,#std::allocator#>#(EventStorage::DataWriter::*)(EventStorage::FileStatus),#boost::python::default_call_policies,#boost::mpl::vector3,#std::allocator#>,#EventStorage::DataWriter=,#EventStorage::FileStatus>#>#const=) - Memcheck:Leak - fun:_Znwj - fun:_ZN5boost6python7objects11py_functionC1INS0_6detail6callerIMN12EventStorage10DataWriterEFSsNS6_10FileStatusEENS0_21default_call_policiesENS_3mpl7vector3ISsRS7_S8_EEEEEERKT_ - fun:_ZN5boost6python6detail17make_function_auxIMN12EventStorage10DataWriterEFSsNS3_10FileStatusEENS0_21default_call_policiesENS_3mpl7vector3ISsRS4_S5_EEN4mpl_4int_ILi0EEEEENS0_3api6objectET_RKT0_RKT1_RKSt4pairIPKNS1_7keywordESS_ET2_ - fun:_ZN5boost6python13make_functionIMN12EventStorage10DataWriterEFSsNS2_10FileStatusEENS0_21default_call_policiesENS0_6detail8keywordsILj0EEENS_3mpl7vector3ISsRS3_S4_EEEENS0_3api6objectET_RKT0_RKT1_RKT2_ - fun:_ZN5boost6python6class_IN12EventStorage10DataWriterENS_12noncopyable_11noncopyableENS0_6detail13not_specifiedES7_E8def_implIS3_MS3_FSsNS2_10FileStatusEENS6_10def_helperIPKcS7_S7_S7_EEEEvPT_SF_T0_RKT1_z - } diff --git a/Tools/ValgrindRTTJobs/share/noWriteESD.py b/Tools/ValgrindRTTJobs/share/noWriteESD.py deleted file mode 100644 index 013fffb7c505a65a14e10806fd9b05349c0acd58..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/noWriteESD.py +++ /dev/null @@ -1,3 +0,0 @@ - -rec.doWriteESD.unlock() -rec.doWriteESD.set_Value_and_Lock(False) diff --git a/Tools/ValgrindRTTJobs/share/oracleDB.supp b/Tools/ValgrindRTTJobs/share/oracleDB.supp deleted file mode 100644 index f7a0fcff71ad4057818bb2bc69475b34f360e346..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/oracleDB.supp +++ /dev/null @@ -1,41 +0,0 @@ -# Value4 is for 32 bit, Value8 is for 64 bit athena jobs -{ - ORACLEa32bit - Memcheck:Value4 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libclntsh.so.* -} -{ - ORACLEa64bit - Memcheck:Value8 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libclntsh.so.* -} -{ - ORACLEb - Memcheck:Cond - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libclntsh.so.* -} -{ - ORACLEc32bit - Memcheck:Value4 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libnnz*.so -} -{ - ORACLEc64bit - Memcheck:Value8 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libnnz*.so -} -{ - ORACLEd - Memcheck:Cond - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libnnz*.so -} -{ - ORACLEe - Memcheck:Addr4 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libclntsh.so.* -} -{ - ORACLEf - Memcheck:Addr8 - obj:/afs/cern.ch/sw/lcg/external/oracle/*/linux*/lib/libclntsh.so.* -} diff --git a/Tools/ValgrindRTTJobs/share/processValgrindOutput.sh b/Tools/ValgrindRTTJobs/share/processValgrindOutput.sh deleted file mode 100755 index 5964810a7ef15b838a601a717decd13734d6c211..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/processValgrindOutput.sh +++ /dev/null @@ -1,943 +0,0 @@ -#!/afs/cern.ch/atlas/offline/external/tcsh/6.15.00/i386_linux26/bin/tcsh -f - -set my_cwd=`pwd` - -set home_dir='/afs/cern.ch/user/s/seuster/scratch0/ValGrind/scripts' - -set jobOptions='../rdotoesdnotrigger.py' -set jobOptions='JetRec_RTT2_jobOptions.py' - -set jobName="NONE" -set jobName=`pwd` -set jobName=`dirname $jobName` -set jobName=`basename $jobName` - -pwd -ls -l - -if ( -e veto.log ) then - echo "job was vetoed, just write short html file" -cat < ./Report.html - - - -Valgrind Report for $jobName release $AtlasVersion of project $AtlasProject - - -

Valgrind Report for:

-

JOB WAS VETOED !

- -EOF - exit 0 -endif - -mkdir -p processed - -set logfile=`grep -l 'bin/athena.py' valgrind.out.process.*` -set pid_vgj=$logfile:e - -echo "Logfile : $logfile" -echo "PID : $pid_vgj" - -if ( "$logfile" == "" ) then - echo "could not find any logfile !!" - exit (0) -endif - -echo "0 0" > mem -@ n = 5 -foreach i ( `grep $pid_vgj top.log | gawk ' { print $5 }' | sed "s/m/\\*1024/g;s/g/\\*1048576/g"` ) -echo -n " $n " >> mem -# expr ` echo "$i" | tr \, \ ` >> mem -perl -l -e " print $i " >> mem -@ n += 5 -end - -echo "0 0" > cpu -@ n = 5 -foreach i ( `grep $pid_vgj top.log | gawk ' { print $9 }'` ) -echo " $n $i" >> cpu -@ n += 5 -end - -# /afs/cern.ch/atlas/offline/external/LCGCMT/LCGCMT_56/InstallArea/i686-slc4-gcc34-opt/bin/ -root -l -b -q memConsumption.C -mv mem.gif mem.eps processed/ - -set jobOptions=`grep '\.py$' $logfile | grep -v "bin/athena.py" | gawk ' { print $2 }'` - -#if ( "x${jobOptions}x" == "xx" ) then -# echo "could not find any jobOptions !!" -# exit 0 -#endif - -# set comments=`grep 'VGCOMMENT:' $jobOptions | gawk -F \: ' { print $2 }'` -set comments="" - -set ref_nightly=`echo $AtlasVersion | awk '{print index($0,"rel_")}'` -echo $ref_nightly -if ( $ref_nightly > 0 ) then - set ref_nightly=`echo $AtlasVersion | awk -F \_ '{print $2}'` - @ ref_nightly -- - if ( $ref_nightly < 0 ) then - set ref_nightly=6 - endif - set ref_nightly="rel_$ref_nightly" - echo $ref_nightly $AtlasVersion -else - set ref_nightly='' -endif -# set ref_nightly='' - -echo $logfile $pid_vgj $jobOptions - -cd processed - -# somehow, output for a different process is found also in this file... -grep '=='${pid_vgj}'== ' ../$logfile > tmp.logfile - -csplit -s -z -k -f error.report tmp.logfile '/=='${pid_vgj}'== ERROR SUMMARY: /+9' >& /dev/null -mv error.report00 error.report -mv error.report01 leak.report -rm -f tmp.logfile - -csplit -s -z -k -f error.summary error.report '/=='${pid_vgj}'== ERROR SUMMARY:/' >& /dev/null -mv error.summary00 error.report -mv error.summary01 error.summary - -csplit -s -z -k -f error.tmp error.report '%=='${pid_vgj}'== '${jobOptions}'%+2' >& /dev/null -mv error.tmp00 error.report - -csplit -s -z -k -f leak.summary leak.report '/=='${pid_vgj}'== LEAK SUMMARY:/' >& /dev/null -mv leak.summary00 leak.report -mv leak.summary01 leak.summary - -mkdir -p errors -mkdir -p leaks - -csplit -s -z -k -f errors/process_ -n4 error.report '/=='${pid_vgj}'== $/+1' '{*}' -csplit -s -z -k -f leaks/process_ -n4 leak.report '/^=='${pid_vgj}'== [0-9a-zA-Z]/' '{*}' - -# cp -f ${home_dir}/html/head/*.html . - -foreach i ( Definitely_Lost Indirectly_Lost Possibly_Lost Still_Reachable ) - echo preparing $i - set name_i=`echo $i | sed "s/_//g"` - set name_j=`echo $i | sed "s/_/ /g"` -cat < $name_i.htm - - - - -Valgrind Report: ${name_j} - - - - -
-

Valgrind reported as ${name_j}:

-
-

- - - -Back to main - -
running number - Loss Report number - bytes lost - in function - in library - -EOF -end - -foreach i ( Mismatched_Free Conditional_Jump Invalid_Read Invalid_Write Use_Of_Uninitialized_Value Open_Files Other_Errors ) - set name_i=`echo $i | sed "s/_//g"` - set name_j=`echo $i | sed "s/_/ /g"` -cat < $name_i.htm - - - - -Valgrind Report: ${name_j} - - - - -
-

Valgrind reported as ${name_j}:

-
-

- - - -Back to main - -\n\n' >> DefinitelyLost.htm - - echo "\n\n' >> IndirectlyLost.htm - - echo "\n\n' >> PossiblyLost.htm - - echo "\n\n' >> StillReachable.htm - - echo "\n\n' >> MismatchedFree.htm - - echo "\n\n' >> ConditionalJump.htm - - echo "\n\n' >> InvalidRead.htm - - echo "\n\n' >> InvalidWrite.htm - - echo "\n\n' >> UseOfUninitializedValue.htm - - echo "\n\n' >> OpenFiles.htm - - echo "\n\n' >> OtherErrors.htm - - echo "
running number - Error Report number - in function - in library -EOF -end - -@ ndl = 0 -@ nil = 0 -@ npl = 0 -@ nsr = 0 - -rm -f leak.list - -pwd -ls -lR - -cat < LeaksList.htm - - - - - -Valgrind Report of memory problems - - - - -EOF - -cat < ErrorReport.htm - - - - - -Valgrind Report of Errors - - - - -EOF - -set failure=`grep "Valgrind cannot continue." ../$logfile | wc -l` - -touch leaks/dummy -set nl=`ls -1 leaks/* | wc -l` - -echo "files in leaks : $nl" - -if ( $nl > 1 ) then - -foreach i ( leaks/process_* ) - # echo $i | awk -F \: ' {print $1 } ' - set dl=`grep -q 'definitely lost' $i ; echo $? ; true` - set il=`grep -q 'indirectly lost' $i ; echo $? ; true` - set pl=`grep -q 'possibly lost' $i ; echo $? ; true` - set sr=`grep -q 'still reachable' $i ; echo $? ; true` - - set mem=`head -1 $i | awk ' {print $2 } '` - # set fun=`grep -m 1 '== by ' $i | sed 's/: /# /g;s/ (in / #/g;s/)$//g' | awk -F \# ' { print $2 } '` - # set lib=`grep -m 1 '== by ' $i | sed 's/: /# /g;s/ (in / #/g;s/)$//g' | awk -F \# ' { print $3 } '` - # set fun=`grep -m 1 '== by ' $i | sed 's/: /# /g;s/ (in / #/g;s/)$//g' | awk -F \# ' { print $2 } '` - set lib=`grep -m 1 '== by ' $i | awk -F \( ' { print $NF } '` - # set r=`grep -m 1 '== by ' $i | awk ' { print $1 " " $2 " " $3 } '` - # set fun=`grep -m 1 '== by ' $i | sed "s/$r//g"` - set r=`grep -m 1 '== by ' $i | awk ' { print $1 } '` - set fun=`grep -m 1 '== by ' $i | sed "s/$r//g"` - set r=`grep -m 1 '== by ' $i | awk ' { print $2 } '` - set fun=`echo "$fun" | sed "s/$r//g"` - set r=`grep -m 1 '== by ' $i | awk ' { print $3 } '` - set fun=`echo "$fun" | sed "s/$r//g"` - - set rlib=`echo "($lib" | sed "s/\//\\\//g"` - set fun=`echo "$fun" | sed "s/$rlib//g"` - set nr=`echo $i | tail -c5` - set lib=`echo $lib | sed 's/)$//g;s/^in//g'` - - # replace "<" and ">" - these are special characters in html - set fun=`echo "$fun" | sed "s//\>/g"` - set lib=`echo $lib | sed "s//\>/g"` - - # definitely lost - if ( $dl == 0 ) then - - @ ndl ++ - - echo '
$ndl" >> DefinitelyLost.htm - # echo "Loss Report $nr" >> DefinitelyLost.htm - echo "Loss Report $nr" >> DefinitelyLost.htm - echo " $mem" >> DefinitelyLost.htm - echo " $fun" >> DefinitelyLost.htm - echo " $lib" >> DefinitelyLost.htm - - echo "

Loss Report $nr

" >> LeaksList.htm - echo "
" >> LeaksList.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> LeaksList.htm
-  echo "
" >> LeaksList.htm - echo "Back to main" >> LeaksList.htm - - endif - - # indirectly lost - if ( $il == 0 ) then - - @ nil ++ - - echo '
$nil" >> IndirectlyLost.htm - # echo "Loss Report $nr" >> IndirectlyLost.htm - echo "Loss Report $nr" >> IndirectlyLost.htm - echo " $mem" >> IndirectlyLost.htm - echo " $fun" >> IndirectlyLost.htm - echo " $lib" >> IndirectlyLost.htm - - echo "

Loss Report $nr

" >> LeaksList.htm - echo "
" >> LeaksList.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> LeaksList.htm
-  echo "
" >> LeaksList.htm - echo "Back to main" >> LeaksList.htm - - endif - - # possibly lost - if ( $pl == 0 ) then - - @ npl ++ - - echo '
$npl" >> PossiblyLost.htm - # echo "Loss Report $nr" >> PossiblyLost.htm - echo "Loss Report $nr" >> PossiblyLost.htm - echo " $mem" >> PossiblyLost.htm - echo " $fun" >> PossiblyLost.htm - echo " $lib" >> PossiblyLost.htm - - echo "

Loss Report $nr

" >> LeaksList.htm - echo "
" >> LeaksList.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> LeaksList.htm
-  echo "
" >> LeaksList.htm - echo "Back to main" >> LeaksList.htm - endif - - # still reachable - if ( $sr == 0 ) then - - @ nsr ++ - - echo '
$nsr" >> StillReachable.htm - # echo "Loss Report $nr" >> StillReachable.htm - echo "Loss Report $nr" >> StillReachable.htm - echo " $mem" >> StillReachable.htm - echo " $fun" >> StillReachable.htm - echo " $lib" >> StillReachable.htm - - echo "

Loss Report $nr

" >> LeaksList.htm - echo "
" >> LeaksList.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> LeaksList.htm
-  echo "
" >> LeaksList.htm - echo "Back to main" >> LeaksList.htm - endif - - set bn=`basename $i` - sed 's/=='$pid_vgj'==/==PID==/g;s/at 0x[0-9,A-F]\{3,8\}:/at 0xFFFFFFFF:/g' $i | \ - sed 's/by 0x[0-9,A-F]\{3,8\}:/by 0xFFFFFFFF:/g' | \ - sed 's/Address 0x[0-9,a-f,A-F]\{3,8\} /Address 0xFFFFFFFF /g' | \ - sed 's/'$AtlasVersion'/RELEASE/g' | \ - sed 's/ in loss record [0-9]\+ of [0-9]\+/ in loss record N of ALL/g' > $bn - md5sum $bn >> leak.list - rm -f $bn - -end - -endif - - -if ( $ndl == 0 ) then - echo "Back to main" >> DefinitelyLost.htm -endif -if ( $nil == 0 ) then - echo "Back to main" >> IndirectlyLost.htm -endif -if ( $npl == 0 ) then - echo "Back to main" >> PossiblyLost.htm -endif -if ( $nsr == 0 ) then - echo "Back to main" >> StillReachable.htm -endif - -cat ${home_dir}/html/tail/Tail.html >> DefinitelyLost.htm -cat ${home_dir}/html/tail/Tail.html >> IndirectlyLost.htm -cat ${home_dir}/html/tail/Tail.html >> PossiblyLost.htm -cat ${home_dir}/html/tail/Tail.html >> StillReachable.htm - -echo "" >> LeaksList.htm - -# and process the error reports about mismatched free and jumps on uninitialized values. -# plus invalid read ! And Use of uninitialised value of size + open files + other errors - -@ nmm = 0 -@ nju = 0 -@ nir = 0 -@ niw = 0 -@ nuu = 0 -@ nof = 0 -@ noe = 0 - -rm -f error.list - -touch errors/dummy -set nl=`ls -1 errors/* | wc -l` - -echo "files in errors : $nl" - -if ( $nl > 1 ) then - -foreach i ( errors/process_* ) - # echo $i | awk -F \: ' {print $1 } ' - - set mm=`grep -q 'Mismatched free' $i ; echo $?` - set ju=`grep -q 'Conditional jump or move' $i ; echo $?` - set ir=`grep -q 'Invalid read' $i ; echo $?` - set iw=`grep -q 'Invalid write' $i ; echo $?` - set uu=`grep -q -e 'Use of uninitialised value of size' -e 'points to uninitialised byte' $i ; echo $?` - set of=`grep -q 'Open file descriptor ' $i ; echo $?` - set oe=0 - - # set fun=`grep -m 1 '== by ' $i | sed 's/: /# /g;s/ (in / #/g;s/)$//g' | awk -F \# ' { print $2 } '` - # set lib=`grep -m 1 '== by ' $i | sed 's/: /# /g;s/ (in / #/g;s/)$//g' | awk -F \# ' { print $3 } '` - # set nr=`echo $i | tail -c5` - - set lib=`grep -m 1 '== by ' $i | awk -F \( ' { print $NF } '` - set r=`grep -m 1 '== by ' $i | awk ' { print $1 } '` - set fun=`grep -m 1 '== by ' $i | sed "s/$r//g"` - set r=`grep -m 1 '== by ' $i | awk ' { print $2 } '` - set fun=`echo "$fun" | sed "s/$r//g"` - set r=`grep -m 1 '== by ' $i | awk ' { print $3 } '` - set fun=`echo "$fun" | sed "s/$r//g"` - set rlib=`echo "($lib" | sed "s/\//\\\//g"` - set fun=`echo "$fun" | sed "s/$rlib//g"` - set nr=`echo $i | tail -c5` - set lib=`echo $lib | sed 's/)$//g;s/^in//g'` - - # Mismatched free - if ( $mm == 0 ) then - - @ oe = 1 - - @ nmm ++ - - echo '
$nmm" >> MismatchedFree.htm - # echo "Error Report $nr" >> MismatchedFree.htm - echo "Error Report $nr" >> MismatchedFree.htm - echo " $fun" >> MismatchedFree.htm - echo " $lib" >> MismatchedFree.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif - - # conditional jumps - if ( $ju == 0 ) then - - @ oe = 1 - - @ nju ++ - - echo '
$nju" >> ConditionalJump.htm - # echo "Error Report $nr" >> ConditionalJump.htm - echo "Error Report $nr" >> ConditionalJump.htm - echo " $fun" >> ConditionalJump.htm - echo " $lib" >> ConditionalJump.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif - - # invalid reads - if ( $ir == 0 ) then - - @ oe = 1 - - @ nir ++ - - echo '
$nir" >> InvalidRead.htm - # echo "Error Report $nr" >> InvalidRead.htm - echo "Error Report $nr" >> InvalidRead.htm - echo " $fun" >> InvalidRead.htm - echo " $lib" >> InvalidRead.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif - # invalid writes - if ( $iw == 0 ) then - - @ oe = 1 - - @ niw ++ - - echo '
$nir" >> InvalidWrite.htm - # echo "Error Report $nr" >> InvalidWrite.htm - echo "Error Report $nr" >> InvalidWrite.htm - echo " $fun" >> InvalidWrite.htm - echo " $lib" >> InvalidWrite.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif -###################### - # use of uninitialized value - if ( $uu == 0 ) then - - @ oe = 1 - - @ nuu ++ - - echo '
$nir" >> UseOfUninitializedValue.htm - # echo "Error Report $nr" >> UseOfUninitializedValue.htm - echo "Error Report $nr" >> UseOfUninitializedValue.htm - echo " $fun" >> UseOfUninitializedValue.htm - echo " $lib" >> UseOfUninitializedValue.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif - - # open file - if ( $of == 0 ) then - - @ oe = 1 - - @ nof ++ - - echo '
$nir" >> OpenFiles.htm - # echo "Error Report $nr" >> OpenFiles.htm - echo "Error Report $nr" >> OpenFiles.htm - echo " $fun" >> OpenFiles.htm - echo " $lib" >> OpenFiles.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif - - # other errors - if ( $oe == 0 ) then - - @ noe ++ - - echo '
$nir" >> OtherErrors.htm - # echo "Error Report $nr" >> OtherErrors.htm - echo "Error Report $nr" >> OtherErrors.htm - echo " $fun" >> OtherErrors.htm - echo " $lib" >> OtherErrors.htm - - echo "

Error Report $nr

" >> ErrorReport.htm - echo "
" >> ErrorReport.htm
-  # replace "<" and ">" - these are special characters in html
-  cat $i | sed "s//\>/g" >> ErrorReport.htm
-  echo "
" >> ErrorReport.htm - echo "Back to main" >> ErrorReport.htm - - endif -################# - set bn=`basename $i` - sed 's/=='$pid_vgj'==/==PID==/g;s/at 0x[0-9,A-F]\{3,8\}:/at 0xFFFFFFFF:/g' $i | \ - sed 's/by 0x[0-9,A-F]\{3,8\}:/by 0xFFFFFFFF:/g' | \ - sed 's/Address 0x[0-9,a-f,A-F]\{3,8\} /Address 0xFFFFFFFF /g' | \ - sed 's/'$AtlasVersion'/RELEASE/g' | \ - sed 's/ in loss record [0-9]\+ of [0-9]\+/ in loss record N of ALL/g' > $bn - md5sum $bn >> error.list - rm -f $bn - -end - -endif - -cat ${home_dir}/html/tail/Tail.html >> MismatchedFree.htm -cat ${home_dir}/html/tail/Tail.html >> ConditionalJump.htm -cat ${home_dir}/html/tail/Tail.html >> InvalidRead.htm -cat ${home_dir}/html/tail/Tail.html >> InvalidWrite.htm -cat ${home_dir}/html/tail/Tail.html >> UseOfUninitializedValue.htm -cat ${home_dir}/html/tail/Tail.html >> OpenFiles.htm -cat ${home_dir}/html/tail/Tail.html >> OtherErrors.htm - -echo "" >> ErrorReport.htm - -set utime=`tail -2 ../out.valgrind.log | head -1 | gawk '{print $1 }'` -set prCPU=`tail -2 ../out.valgrind.log | head -1 | gawk '{print $4 }'` -set pyRes=`grep "INFO leaving with code" ../out.valgrind.log | sed 's/^Py:Athena//g;s/INFO//g;s/^[ \t]*//'` - -set pyResCode=`echo $pyRes | sed "s/leaving with code \(.*\):.*/\1/g"` - -# fill the final report -# the python steering file already produced the first few lines for us. -# -# -# -#Valgrind Report for $jobName release $AtlasVersion of project $AtlasProject -# -# -#

Valgrind Report for:

-# -# -# -# -# -# -# -# -# -# -# -# -# -# -# -# -# - -cat <> ../Report.html - - - - - - - - - - - - - - - - - - - - -
release$AtlasVersion
project$AtlasProject
AtlasArea points to$AtlasArea
CMTCONFIG$CMTCONFIG
jobOptions$jobOptions
usertime$utime
and got$prCPU
job finished with$pyRes
logfile is here:out.valgrind.log
- - - -
- 
-EOF
-
-sed 's/=='${pid_vgj}'== //g' leak.summary | \
-sed "s/definitely lost/definitely lost<\/a>/g" | \
-sed "s/indirectly lost/indirectly lost<\/a>/g" | \
-sed "s/possibly lost/possibly lost<\/a>/g" | \
-sed "s/still reachable/still reachable<\/a>/g" >> ../Report.html
-
-echo >> ../Report.html
-echo "reports of definitely lost : $ndl" >> ../Report.html
-echo "reports of indirectly lost : $nil" >> ../Report.html
-echo "reports of   possibly lost : $npl" >> ../Report.html
-echo "reports of still reachable : $nsr" >> ../Report.html
-
-set doy=`date -r $AtlasArea/cmt +'%j'`
-
-cat <> ../Report.html
- 
-
- -
- 
-ERROR SUMMARY:
-   Mismatched free() / delete / delete []                       : $nmm
-   Conditional jump or move depends on uninitialised value(s)   : $nju
-   Invalid read                                                 : $nir
-   Invalid write                                                : $niw
-   Use of uninitialized Values                                  : $nuu
-   Open Files                                                   : $nof
-   Other Errors (might not be errors at all)                    : $noe
- 
-
- -EOF - -if ( $failure > 0 ) then -cat <> ../Report.html -

FAILURE:

-
- 
-EOF
-
-grep -v "^==" ../$logfile >> ../Report.html
-
-cat <> ../Report.html
- 
-
- -EOF -endif - -set rdir=`echo $VG_RDIR | sed "s/$AtlasVersion/$ref_nightly/g"` - -if ( "$ref_nightly" != "" ) then - -cp -f $rdir/report_def.log .. -cp -f $rdir/report_ind.log .. -cp -f $rdir/report_pos.log .. -cp -f $rdir/report_str.log .. -echo "$doy $ndl" >> ../report_def.log -echo "$doy $nil" >> ../report_ind.log -echo "$doy $npl" >> ../report_pos.log -echo "$doy $nsr" >> ../report_str.log - -cp -f $rdir/report_mfd.log .. -cp -f $rdir/report_cjm.log .. -cp -f $rdir/report_inv.log .. -cp -f $rdir/report_stc.log .. -echo "$doy $nmm" >> ../report_mfd.log -echo "$doy $nju" >> ../report_cjm.log -echo "$doy $nir" >> ../report_inv.log -echo "$doy $pyResCode" >> ../report_stc.log - -cat <> ../Report.html -

-

History:

-EOF - -endif - -cat <> ../Report.html -
- - - - -EOF - -# possible diffs need PID and addresses modified ... -grep '^=='$pid_vgj'==' ../$logfile | \ - sed 's/=='$pid_vgj'==/==PID==/g;s/at 0x[0-9,A-F]\{3,8\}:/at 0xFFFFFFFF:/g' | \ - sed 's/by 0x[0-9,A-F]\{3,8\}:/by 0xFFFFFFFF:/g' | \ - sed 's/Address 0x[0-9,a-f,A-F]\{3,8\} /Address 0xFFFFFFFF /g' | \ - sed 's/'$AtlasVersion'/RELEASE/g' | \ - sed 's/ in loss record [0-9]\+ of [0-9]\+/ in loss record N of ALL/g' > prepForDiff - -set nll=`wc -l leak.list | gawk ' {print $1 }'` -set nel=`wc -l error.list | gawk ' {print $1 }'` -set mll=`wc -l $rdir/leak.list | gawk ' {print $1 }'` -set mel=`wc -l $rdir/error.list | gawk ' {print $1 }'` - -#foreach i ( `sed "s/ /./g" leak.list` ) -# echo $i -#end - -set ref_nightly ="" -if ( "$ref_nightly" != "" ) then - -cat < DiffToYesterday.htm - - - -diffs to Valgrind Report from Yesterday - - -

Diffs to Yesterday:

- - - - - - - - - - - - - - - - - -
$AtlasVersion$ref_nightly
leak reports$nll$mll
error reports$nel$mel
- -In detail:
-new leaks
-disappeared leaks
-old leaks
- -Note: small changes in the output can lead to a report classified as "new". The report from the reference nightly then shows up as "disappeared". - - -EOF - -cat < NewReports.htm - - - -new leak reports - - -

new leak reports:

- -EOF - -cat < OldReports.htm - - - -old leak reports - - -

old leak reports:

-
-EOF - -cat < DisappearedReports.htm - - - -disappeared leak reports - - -

disappeared leak reports:

-
-EOF - -set new=0 -set dis=$mll -set old=0 - -set foundreports="" - -foreach i ( `sed "s/ /./g" leak.list` ) - set checksum=$i:r - set filename=$i:e - - set nr=`echo $filename | tr \_ \.` - - set tmp=`grep $checksum $rdir/leak.list` - set result=$status - set tmp=`echo $tmp | sed "s/$checksum//g"` - # echo $checksum $filename $result $tmp "." - - if ( $result ) then - echo "" >> NewReports.htm - @ new ++ - @ dis -- - else - echo "" >> OldReports.htm - @ old ++ - @ dis -- - endif -end - -echo $new $old $dis -# echo $foundreports - -foreach i ( $rdir/leaks/process* ) - set filename=`basename $i` - echo $foundreports | grep -q $filename - set result=$status - # echo $i $filename $result - if ( $result ) then - echo "" >> DisappearedReports.htm - endif -end - -cat <> NewReports.htm -
Loss Report $nr:e
Loss Report $nr:e" >> OldReports.htm - foreach j ( $tmp ) - set onr=`echo $j | tr \_ \.` - echo " old Loss Report $onr:e" >> OldReports.htm - set foundreports="$foundreports $j" - end - echo "
Loss Report
- -
-EOF - -cat <> OldReports.htm -
- - -EOF - -cat <> DisappearedReports.htm -

- - -EOF -endif - -# post-postprocess two htm files -mv LeaksList.htm LeaksList.bak.htm -mv ErrorReport.htm ErrorReport.bak.htm - -sed 's/(\(\([a-zA-Z0-9._]*\.[c,h,i].*\):[0-9]\+\))$/& (LXR: \2<\/a>)/g' \ - LeaksList.bak.htm > LeaksList.htm - -sed 's/(\(\([a-zA-Z0-9._]*\.[c,h,i].*\):[0-9]\+\))$/& (LXR: \2<\/a>)/g' \ - ErrorReport.bak.htm > ErrorReport.htm - -# sed 's/(\(\([a-zA-Z0-9._]*\):[0-9]\+\))$/& (\1<\/a>)/g' ../makeRTT/Results/rel_1/devval/build/i686-slc4-gcc34-dbg/offline/ValgrindRTTJobs/Valgrind_JobTransforms/ESDtoESD/5/processed/LeaksList.htm> ../makeRTT/Results/rel_1/devval/build/i686-slc4-gcc34-dbg/offline/ValgrindRTTJobs/Valgrind_JobTransforms/ESDtoESD/5/processed/LeaksList.html - -cd .. -# /afs/cern.ch/atlas/offline/external/LCGCMT/LCGCMT_56/InstallArea/i686-slc4-gcc34-opt/bin/ -root -l -b -q historyNightlies.C -mv history.gif history.eps processed/ diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_CALOonly.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_CALOonly.py deleted file mode 100755 index 354ab0d1c358f1bc725de07e37182624a94bd974..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_CALOonly.py +++ /dev/null @@ -1,24 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -DetFlags.ID_setOff() -# DetFlags.Calo_setOff() -DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#VGCOMMENT: no CBNT, Trigger, ID, Muons, ESD diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_IDonly.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_IDonly.py deleted file mode 100755 index 732e3bbf7ba50a0552dcb2dda7d78079a08ea25f..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_IDonly.py +++ /dev/null @@ -1,35 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -doPerfMon=False - -from RecExConfig.RecFlags import rec -rec.doEdmMonitor=False -rec.doEdmMonitor.lock() - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -# DetFlags.ID_setOff() -DetFlags.Calo_setOff() -DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#theAuditorSvc = svcMgr.AuditorSvc -#theApp.AuditAlgorithms=False -#theApp.AuditServices=False -#theApp.AuditTools=False - -#VGCOMMENT: no CBNT, Trigger, Calo, Muons, ESD diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_MUONonly.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_MUONonly.py deleted file mode 100755 index 47d08da4cca0370b6baf7ed15fd6b46066a45484..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_MUONonly.py +++ /dev/null @@ -1,24 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -DetFlags.ID_setOff() -DetFlags.Calo_setOff() -# DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#VGCOMMENT: no CBNT, Trigger, ID, Calo, ESD diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noCALO.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noCALO.py deleted file mode 100755 index becf5dc0d5b8f582b0ccbece412f2ccf61bf3882..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noCALO.py +++ /dev/null @@ -1,24 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -# DetFlags.ID_setOff() -DetFlags.Calo_setOff() -# DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#VGCOMMENT: no CBNT, Trigger, Calo, ESD diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noID.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noID.py deleted file mode 100755 index 4b40b0a0e9e6ca92d6a2f6881ea456c81f02d6d3..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noID.py +++ /dev/null @@ -1,24 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -DetFlags.ID_setOff() -# DetFlags.Calo_setOff() -# DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#VGCOMMENT: no CBNT, Trigger, ID, ESD diff --git a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noMUON.py b/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noMUON.py deleted file mode 100755 index 1f0e630c4d66f779ff20ef3f7dc16189ea261610..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/rdotoesdnotrigger_noMUON.py +++ /dev/null @@ -1,34 +0,0 @@ -# steering file for RDO->ESD step without trigger -# see myTopOptions.py for more info - -doCBNT=False -doTrigger=False -doWriteRDO=False -doWriteESD=False -if not 'doWriteESD' in dir(): - doWriteESD=True -doWriteAOD=False -doAOD=False -doWriteTAG=False - -#doPerfMon=False -#doHist=False - -#include.block("RecExCommon/RecoUtils.py") - -# DetFlags modifications are best set here (uncomment RecExCommon_flags first) -include ("RecExCond/RecExCommon_flags.py") -# switch off ID, calo, or muons -# DetFlags.ID_setOff() -# DetFlags.Calo_setOff() -DetFlags.Muon_setOff() - -# main jobOption -include ("RecExCommon/RecExCommon_topOptions.py") - -#theAuditorSvc = svcMgr.AuditorSvc -#theApp.AuditAlgorithms=False -#theApp.AuditServices=False -#theApp.AuditTools=False - -#VGCOMMENT: no CBNT, Trigger, Muons, ESD diff --git a/Tools/ValgrindRTTJobs/share/root.supp b/Tools/ValgrindRTTJobs/share/root.supp deleted file mode 100644 index ea69d159434e2923c5262876958d7c17647196d0..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/root.supp +++ /dev/null @@ -1,1035 +0,0 @@ -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerISsE3GetEv - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IServiceSsP11ISvcLocatorEE3GetEv - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F14ToolSvc_dict20C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - TArray leak - Memcheck:Leak - fun:_Znaj - fun:_ZN7TArrayI3SetEi - fun:_ZN6TColor10SetPaletteEiPi - fun:_ZN6TStyle10SetPaletteEiPi - fun:_ZN6TStyle5ResetEPKc - fun:_ZN6TStyleC1EPKcS1_ -} -{ - TStorage leak - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZNK4ROOT20TQObjectInitBehavior11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES2_S2_ii - fun:_ZN4ROOT17TGenericClassInfo8GetClassEv - fun:_ZN8TQObject5ClassEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev -} -{ - TString leak - Memcheck:Leak - fun:_Znaj - fun:_ZN10TStringRef6GetRepEii - fun:_ZN7TStringC1EPKc - fun:_ZN10TObjStringC1EPKc - fun:_ZN4ROOT18TMapTypeToClassRec3AddEPKcRP9TClassRec - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__store_dictposition - fun:G__storerewindposition - fun:G__exec_text - fun:G__platformMacro - fun:G__set_stdio -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex5ScopeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex5ScopeESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex5ScopeESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex5ScopeESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase11AddSubScopeERKNS0_5ScopeE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2EPKcNS0_4TYPEE - fun:_ZN4ROOT6Reflex9NamespaceC1EPKc - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv -} -{ - CINT Leak - Memcheck:Leak - fun:_Znwj - fun:G__call_setup_funcs - fun:_ZN24G__cpp_setup_initG__MathC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK8TComplex - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIPKcE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2EPKcNS0_4TYPEE - fun:_ZN4ROOT6Reflex9NamespaceC1EPKc - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex5Scope11__NIRVANA__Ev - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev - fun:_ZN4ROOT6Reflex9NamespaceC1Ev - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerISsE3GetEv - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IServiceSsP11ISvcLocatorEE3GetEv - fun:_ZN55_GLOBAL__N_.._src_ToolSvc_ToolSvc.cpp_9D2164D3_0CE4793F14ToolSvc_dict20C1Ev -} -{ - Memcheck:Leak - fun:calloc - fun:_dlerror_run - fun:dlopen@GLIBC_2.0 - fun:_ZN4ROOT6Reflex13SharedLibrary4LoadEv - fun:_ZN4ROOT6Reflex13PluginService14LoadFactoryLibERKSs - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList10NewOptLinkEP7TObjectPKcP8TObjLink - fun:_ZN5TList7AddLastEP7TObjectPKc - fun:_ZN5TList3AddEP7TObjectPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Memcheck:Leak - fun:malloc - fun:G__getparameterlist - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9ScopeNameC1EPKcPNS0_9ScopeBaseE - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerIN2SG6FolderEE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIN2SG6FolderEEERKNS0_4TypeEv - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C12Folder_dict8C1Ev -} -{ - Memcheck:Leak - fun:malloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK10TObjString - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK8TQObject - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN6TLimit7fgTableE - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libHist.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libHist.so - fun:_dl_init -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerIN2SG6FolderEE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIN2SG6FolderEEERKNS0_4TypeEv - fun:_ZN66_GLOBAL__N_.._src_components_SGComps_entries.cxx_9D2164D3_35A4406C12Folder_dict8C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Base1 -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gCINTMutex - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so - fun:_dl_init -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint12SetClassInfoEP6TClassb - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN6TClassC1EPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN4ROOT11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZNK4ROOT20TDefaultInitBehavior11CreateClassEPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES2_S2_ii -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement - fun:G__loadfile_tmpfile -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIjE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__stack_instance - fun:G__resetplocal - fun:_Z20G__cpp_setup_global0v - fun:G__cpp_setup_globalG__Math - fun:G__cpp_setupG__Math -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex3AnyEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex3AnyESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6resizeEjRKS2_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex4TypeEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex4TypeESaIS2_EE11_M_allocateEj - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex4TypeESaIS2_EEC2EjRKS3_ - fun:_ZNSt6vectorIN4ROOT6Reflex4TypeESaIS2_EEC1ERKS4_ - fun:_ZN4ROOT6Reflex8FunctionC1ERKNS0_4TypeERKSt6vectorIS2_SaIS2_EERKSt9type_infoNS0_4TYPEE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex9Namespace11GlobalScopeEv - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libReflex.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__getparameterlist - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList10NewOptLinkEP7TObjectPKcP8TObjLink - fun:_ZN5TList7AddLastEP7TObjectPKc - fun:_ZN5TList3AddEP7TObjectPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7PointerC1ERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16NamespaceBuilderC1EPKc - fun:_ZN4ROOT6Reflex13PluginServiceC1Ev - fun:_ZN4ROOT6Reflex13PluginService8InstanceEv - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateIP10IInterfaceS4_EET_RKSsRKT0_ -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderIPKcE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT14DefineBehaviorEP8TQObjectS1_ - fun:_ZN4ROOT25GenerateInitInstanceLocalEPK6TTimer - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK16TMemberInspector - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libCore.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - CINT leak - Memcheck:Leak - fun:realloc - fun:G__add_setup_func - fun:_ZN26G__cpp_setup_initG__MatrixC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT20GenerateInitInstanceEPK12TMatrixTBaseIfE - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libMatrix.so -} -{ - CINT leak - Memcheck:Leak - fun:realloc - fun:G__add_ipath - fun:_ZN5TCint14AddIncludePathEPKc - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv - fun:_ZN6TTimer5ResetEv -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7PointerC1ERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex7TypedefC1EPKcRKNS0_4TypeENS0_4TYPEES6_ - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsPKc - fun:_ZNK4ROOT6Reflex12PropertyList11AddPropertyERKSsPKc - fun:_ZN4ROOT6Reflex6ReflexC1Ev -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:realloc - fun:_dl_lookup_symbol_x - fun:_dl_relocate_object - fun:dl_open_worker - fun:_dl_catch_error -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:add_to_global - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:_dl_map_object_deps - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:_dl_new_object - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error -} -{ - dlopen leak - Memcheck:Leak - fun:malloc - fun:open_path - fun:_dl_map_object - fun:openaux - fun:_dl_catch_error - fun:_dl_map_object_deps -} -{ - dlopen leak - Memcheck:Leak - fun:calloc - fun:_dl_check_map_versions - fun:dl_open_worker - fun:_dl_catch_error - fun:_dl_open - fun:dlopen_doit -} -{ - dlopen leak - Memcheck:Leak - fun:calloc - fun:_dl_new_object - fun:_dl_map_object_from_fd - fun:_dl_map_object - fun:dl_open_worker - fun:_dl_catch_error -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderI11InterfaceIDE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createfuncmacro - fun:G__define - fun:G__keyword_anytime_7 - fun:G__exec_statement - fun:G__loadfile_tmpfile -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex10MemberBaseC2EPKcRKNS0_4TypeENS0_4TYPEEj - fun:_ZN4ROOT6Reflex14FunctionMemberC1EPKcRKNS0_4TypeEPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S3_jNS0_4TYPEE - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248227PartitionSwitchTool_dict128C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex19FunctionTypeBuilderERKNS0_4TypeERKSt6vectorIS1_SaIS1_EERKSt9type_info - fun:_ZN4ROOT6Reflex17FunctionDistillerIFP8IAlgToolSsSsPK10IInterfaceEE3GetEv - fun:_ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248227PartitionSwitchTool_dict128C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN67_GLOBAL__N_.._src_DataSvc_PartitionSwitchTool.cpp_9D2164D3_EEE8248229s_PartitionSwitchTool_dict128E -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex14PointerBuilderERKNS0_4TypeERKSt9type_info - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIKP10IInterfaceEERKNS0_4TypeEv - fun:_ZN4ROOT6Reflex11ValueObjectC1IKP10IInterfaceEERT_ -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__tagtable_setup - fun:G__cpp_setup_tagtableG__Base3 - fun:G__cpp_setupG__Base3 - fun:G__call_setup_funcs -} -{ - Graf leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TWebPaletteC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gWebImagePalette - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so -} -{ - Graf leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TWebPaletteC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I_gWebImagePalette - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so - obj:/afs/cern.ch/sw/lcg/external/root/5.18.00a/slc4_ia32_gcc34_dbg/root/lib/libGraf.so -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE - fun:_ZN4ROOT6Reflex11FundamentalC1EPKcjRKSt9type_info - fun:_ZN4ROOT6Reflex6ReflexC1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN4ROOT6Reflex6ReflexC2Ev -} -{ - ROOT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TList7NewLinkEP7TObjectP8TObjLink - fun:_ZN5TList7AddLastEP7TObject - fun:_ZN5TList3AddEP7TObject - fun:_ZN10THashTable3AddEP7TObject - fun:_ZN4TMap3AddEP7TObjectS1_ -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:_ZN5TCint17UpdateListOfTypesEv - fun:_ZN5TROOT14GetListOfTypesEb - fun:_ZNK5TROOT7GetTypeEPKcb - fun:_ZN6TClass8GetClassEPKcb - fun:_ZNK5TROOT8GetClassEPKcb -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN8TStorage5AllocEj - fun:_ZN9TObjArray4InitEii - fun:_ZN9TObjArrayC1Eii - fun:_ZN6TClass4InitEPKcsPKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii - fun:_ZN6TClassC1EPKcsRKSt9type_infoP16TVirtualIsAProxyPFvPvR16TMemberInspectorPcES1_S1_ii -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_Z6StrDupPKc - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znwj - fun:_ZN11TClassTable11FindElementEPKcb - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT8AddClassEPKcsRKSt9type_infoPFvvEi - fun:_ZNK4ROOT20TDefaultInitBehavior8RegisterEPKcsRKSt9type_infoPFvvEi - fun:_ZN4ROOT17TGenericClassInfo4InitEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN10THashTableC1Eii - fun:_ZN4TMapC1Eii - fun:_ZN4ROOT18TMapTypeToClassRecC1Ev - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znwj - fun:_ZN8TStorage11ObjectAllocEj - fun:_ZN7TObjectnwEj - fun:_ZN4TMap3AddEP7TObjectS1_ - fun:_ZN4ROOT18TMapTypeToClassRec3AddEPKcRP9TClassRec - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - TClass leak - Memcheck:Leak - fun:_Znaj - fun:_ZN12TObjectTableC1Ei - fun:_ZN12TObjectTable6AddObjEP7TObject - fun:_ZN7TObjectC2Ev - fun:_ZN11TClassTableC1Ev - fun:_ZN11TClassTable3AddEPKcsRKSt9type_infoPFvvEi -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex11OwnedMemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex11OwnedMemberESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex11OwnedMemberESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex11OwnedMemberESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase17AddFunctionMemberERKNS0_6MemberE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex6MemberEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex6MemberESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex6MemberESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex6MemberESaIS2_EE9push_backERKS2_ - fun:_ZNK4ROOT6Reflex9ScopeBase17AddFunctionMemberERKNS0_6MemberE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNK4ROOT6Reflex3Any6HolderISsE5CloneEv - fun:_ZN4ROOT6Reflex3AnyC1ERKS1_ - fun:_ZN4ROOT6Reflex3AnyaSERKS1_ - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex10MemberBaseC2EPKcRKNS0_4TypeENS0_4TYPEEj - fun:_ZN4ROOT6Reflex14FunctionMemberC1EPKcRKNS0_4TypeEPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S3_jNS0_4TYPEE - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567116NTupleSvc_dict48C1Ev - fun:_Z41__static_initialization_and_destruction_0ii -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerI10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN9__gnu_cxx13new_allocatorIN4ROOT6Reflex3AnyEE8allocateEjPKv - fun:_ZNSt12_Vector_baseIN4ROOT6Reflex3AnyESaIS2_EE11_M_allocateEj - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPS2_S4_EEjRKS2_ - fun:_ZNSt6vectorIN4ROOT6Reflex3AnyESaIS2_EE6resizeEjRKS2_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyEjRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsRKNS0_3AnyE - fun:_ZN4ROOT6Reflex16PropertyListImpl11AddPropertyERKSsPKc - fun:_ZNK4ROOT6Reflex12PropertyList11AddPropertyERKSsPKc - fun:_ZN4ROOT6Reflex9ScopeBaseC2Ev -} -{ - TUnix leak - Memcheck:Leak - fun:_Znaj - fun:_ZN7TSystemC2EPKcS1_ - fun:_ZN11TUnixSystemC1Ev - fun:_ZN5TROOT10InitSystemEv - fun:_ZN5TROOTC1EPKcS1_PPFvvE - fun:_ZN4ROOT7GetROOTEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex11TypeBuilderEPKcj - fun:_ZN4ROOT6Reflex13TypeDistillerI10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex13TypeDistillerIKP10IInterfaceE3GetEv - fun:_ZN4ROOT6Reflex7GetTypeIKP10IInterfaceEERKNS0_4TypeEv -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN69_GLOBAL__N_.._src_ApplicationMgr_ApplicationMgr.cpp_9D2164D3_A4BA85537FactoryI14ApplicationMgrFP10IInterfaceS3_EE4FuncEPvRKSt6vectorIS6_SaIS6_EES6_ - fun:_ZNK4ROOT6Reflex14FunctionMember6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZNK4ROOT6Reflex6Member6InvokeERKNS0_6ObjectERKSt6vectorIPvSaIS6_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateERKSsRKNS0_4TypeERKSt6vectorINS0_11ValueObjectESaIS8_EE - fun:_ZN4ROOT6Reflex13PluginService6CreateIP10IInterfaceS4_EET_RKSsRKT0_ -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZNSs4_Rep9_S_createEjjRKSaIcE - obj:/usr/lib/libstdc++.so.6.0.3 - fun:_ZNSsC1EPKcRKSaIcE - fun:_ZN4ROOT6Reflex8TypeNameC1EPKcPNS0_8TypeBaseEPKSt9type_info - fun:_ZN4ROOT6Reflex8TypeBaseC2EPKcjNS0_4TYPEERKSt9type_infoRKNS0_4TypeE -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:calloc - fun:G__malloc - fun:_Z16G__alloc_var_refIiPFl8G__valueEEviT0_PcP12G__var_arrayiRS0_ - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__createtemplateclass - fun:G__tagtable_setup - fun:G__cpp_setup_tagtableG__Base3 - fun:G__cpp_setupG__Base3 - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_typename - fun:G__search_typename2 - fun:G__cpp_setup_typetableG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_para_setup - fun:G__parse_parameter_link - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Cont -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:G__cpp_setup_inheritanceG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:_Znwj - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - Reflex leak - Memcheck:Leak - fun:_Znwj - fun:_ZN4ROOT6Reflex15FunctionBuilderC1ERKNS0_4TypeEPKcPFPvS7_RKSt6vectorIS7_SaIS7_EES7_ES7_S6_h - fun:_ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567116NTupleSvc_dict48C1Ev - fun:_Z41__static_initialization_and_destruction_0ii - fun:_GLOBAL__I__ZN59_GLOBAL__N_.._src_NTupleSvc_NTupleSvc.cpp_17E02520_8B10567118s_NTupleSvc_dict48E - obj:/afs/cern.ch/atlas/offline/external/GAUDI/v19r6p4-LCG54f/GaudiSvc/i686-slc4-gcc34-dbg/libGaudiSvc.so -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__heritsixEi - fun:G__inheritance_setup - fun:G__cpp_setup_inheritanceG__Unix - fun:G__cpp_setupG__Unix - fun:G__call_setup_funcs -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__savestring - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:_ZN9G__paramsixEi - fun:G__memfunc_setup - fun:_Z18G__cpp_setup_func1v - fun:G__cpp_setup_funcG__Cont - fun:G__cpp_setupG__Cont -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__allocvariable - fun:G__letvariable - fun:G__getexpr - fun:G__set_stdio - fun:G__main -} -{ - CINT leak - Memcheck:Leak - fun:malloc - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix - fun:G__cpp_setupG__Unix -} -{ - - CINT leak - Memcheck:Leak - fun:malloc - fun:G__memfunc_next - fun:G__search_tagname - fun:G__get_linked_tagnum - fun:G__get_linked_tagnum_fwd - fun:G__cpp_setup_tagtableG__Unix -} - diff --git a/Tools/ValgrindRTTJobs/share/valgrind-python.supp b/Tools/ValgrindRTTJobs/share/valgrind-python.supp deleted file mode 100644 index e09ea96ae1205b431f670a1e0898608d7cdd9db2..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/valgrind-python.supp +++ /dev/null @@ -1,217 +0,0 @@ -# -# This is a valgrind suppression file that should be used when using valgrind. -# -# Here's an example of running valgrind: -# -# cd python/dist/src -# valgrind --tool=memcheck --suppressions=Misc/valgrind-python.supp \ -# ./python -E -tt ./Lib/test/regrtest.py -u bsddb,network -# -# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER -# to use the preferred suppressions with Py_ADDRESS_IN_RANGE. -# -# If you do not want to recompile Python, you can uncomment -# suppressions for PyObject_Free and PyObject_Realloc. -# -# See Misc/README.valgrind for more information. - -# all tool names: Addrcheck,Memcheck,cachegrind,helgrind,massif -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Addr4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Value4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value - Memcheck:Cond - fun:Py_ADDRESS_IN_RANGE -} - -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Addr4 -### fun:PyObject_Free -###} -### -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Value4 -### fun:PyObject_Free -###} -### -###{ -### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value -### Memcheck:Cond -### fun:PyObject_Free -###} - -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Addr4 -### fun:PyObject_Realloc -###} -### -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Value4 -### fun:PyObject_Realloc -###} -### -###{ -### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value -### Memcheck:Cond -### fun:PyObject_Realloc -###} - -### -### All the suppressions below are for errors that occur within libraries -### that Python uses. The problems to not appear to be related to Python's -### use of the libraries. -### -{ - GDBM problems, see test_gdbm - Memcheck:Param - write(buf) - fun:write - fun:gdbm_open - -} - -### -### These occur from somewhere within the SSL, when running -### test_socket_sll. They are too general to leave on by default. -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:memset -###} -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:memset -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:MD5_Update -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:MD5_Update -###} - -# -# All of these problems come from using test_socket_ssl -# -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_bin2bn -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont -} - -{ - from test_socket_ssl - Memcheck:Param - write(buf) - fun:write - obj:/usr/lib/libcrypto.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_set_key_unchecked -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_encrypt2 -} - -{ - from test_socket_ssl - Memcheck:Cond - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Value4 - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BUF_MEM_grow_clean -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:memcpy - fun:ssl3_read_bytes -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:SHA1_Update -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:SHA1_Update -} - - - diff --git a/Tools/ValgrindRTTJobs/share/valgrindRTT.supp b/Tools/ValgrindRTTJobs/share/valgrindRTT.supp deleted file mode 100755 index 6b444b9dbb2d65de1003f0639cb1c3a9b3cec181..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/valgrindRTT.supp +++ /dev/null @@ -1,216 +0,0 @@ -# -# This is a valgrind suppression file that should be used when using valgrind. -# -# Here's an example of running valgrind: -# -# cd python/dist/src -# valgrind --tool=memcheck --suppressions=Misc/valgrind-python.supp \ -# ./python -E -tt ./Lib/test/regrtest.py -u bsddb,network -# -# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER -# to use the preferred suppressions with Py_ADDRESS_IN_RANGE. -# -# If you do not want to recompile Python, you can uncomment -# suppressions for PyObject_Free and PyObject_Realloc. -# -# See Misc/README.valgrind for more information. - -# all tool names: Addrcheck,Memcheck,cachegrind,helgrind,massif -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Addr4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Value4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value - Memcheck:Cond - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Addr4 - fun:PyObject_Free -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Value4 - fun:PyObject_Free -} - -{ - ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value - Memcheck:Cond - fun:PyObject_Free -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Addr4 - fun:PyObject_Realloc -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Value4 - fun:PyObject_Realloc -} - -{ - ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value - Memcheck:Cond - fun:PyObject_Realloc -} - -### -### All the suppressions below are for errors that occur within libraries -### that Python uses. The problems to not appear to be related to Python's -### use of the libraries. -### -{ - GDBM problems, see test_gdbm - Memcheck:Param - write(buf) - fun:write - fun:gdbm_open - -} - -### -### These occur from somewhere within the SSL, when running -### test_socket_sll. They are too general to leave on by default. -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:memset -###} -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:memset -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:MD5_Update -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:MD5_Update -###} - -# -# All of these problems come from using test_socket_ssl -# -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_bin2bn -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont -} - -{ - from test_socket_ssl - Memcheck:Param - write(buf) - fun:write - obj:/usr/lib/libcrypto.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_set_key_unchecked -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_encrypt2 -} - -{ - from test_socket_ssl - Memcheck:Cond - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Value4 - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BUF_MEM_grow_clean -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:memcpy - fun:ssl3_read_bytes -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:SHA1_Update -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:SHA1_Update -} - - diff --git a/Tools/ValgrindRTTJobs/share/vgOpts.py b/Tools/ValgrindRTTJobs/share/vgOpts.py deleted file mode 100644 index d5522f84b65d696c3aad0b20f7892037431304ba..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/share/vgOpts.py +++ /dev/null @@ -1,5 +0,0 @@ -# helper alg to print PID -from ValgrindRTTJobs.ValgrindRTTJobsConf import ValgrindHelperAlg -from AthenaCommon.AlgSequence import AlgSequence -topSequence = AlgSequence() -topSequence.insert(0,ValgrindHelperAlg()) diff --git a/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.cxx b/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.cxx deleted file mode 100644 index 60e42bd622ec6e4002ff4a04ac4748738447abfb..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.cxx +++ /dev/null @@ -1,6 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#include "ValgrindHelperAlg.h" - diff --git a/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.h b/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.h deleted file mode 100644 index 1b6c28b672dbf4a0eacc9cae07cba4f6b3a233d1..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/src/ValgrindHelperAlg.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef VALGRINDRTTJOBS_VALGRINDHELPERALG_H -#define VALGRINDRTTJOBS_VALGRINDHELPERALG_H - -// Include files -#include "AthenaBaseComps/AthAlgorithm.h" - -// #include "valgrind/valgrind.h" - -#include -#include - -class ValgrindHelperAlg : public AthAlgorithm -{ - public: - - ValgrindHelperAlg( const std::string& name, ISvcLocator* svcloc ) - : AthAlgorithm( name, svcloc ) - { - // VALGRIND_PRINTF("%s", "in constructor..."); - }; - - virtual ~ValgrindHelperAlg( ) - { - // VALGRIND_PRINTF("%s", "in destructor..."); - }; - - virtual StatusCode initialize( ) - { - ATH_MSG_INFO ("ValgrindHelperAlg test: " << getpid() ); - // VALGRIND_PRINTF("%s", "in initialize..."); - return StatusCode::SUCCESS; - }; - - virtual StatusCode execute( ) - { - // VALGRIND_PRINTF("%s", "in execute..."); - return StatusCode::SUCCESS; - }; - - virtual StatusCode finalize( ) - { - // VALGRIND_PRINTF("%s", "in finalize..."); - return StatusCode::SUCCESS; - }; - -}; -#endif diff --git a/Tools/ValgrindRTTJobs/src/components/ValgrindRTTJobs_entries.cxx b/Tools/ValgrindRTTJobs/src/components/ValgrindRTTJobs_entries.cxx deleted file mode 100644 index eba40429787cc481f8f6233f3b4db80ef3ce8dd9..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/src/components/ValgrindRTTJobs_entries.cxx +++ /dev/null @@ -1,5 +0,0 @@ -#include "../ValgrindHelperAlg.h" - - -DECLARE_COMPONENT( ValgrindHelperAlg ) - diff --git a/Tools/ValgrindRTTJobs/test/ValgrindRTTJobs_TestConfiguration.xml b/Tools/ValgrindRTTJobs/test/ValgrindRTTJobs_TestConfiguration.xml deleted file mode 100755 index 8255ecd8691ed1a6792c4a7a942a707349fb531a..0000000000000000000000000000000000000000 --- a/Tools/ValgrindRTTJobs/test/ValgrindRTTJobs_TestConfiguration.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - Antonio.Limosani AT cern.ch - Antonio.Limosani@cern.ch - 15.0.0 - - - - OfflineValidation - Reco - Athena-Core - - - - - RAW to AOD tcmalloc - RAWtoESD_MC_AthMemoryAuditor_stdcmalloc - - Reco_tf.py --inputHITSFile='/afs/cern.ch/atlas/project/rig/valid1.110401.PowhegPythia_P2012_ttbar_nonallhad.simul.HITS.e3099_s2082_tid01614220_00/HITS.01614220._000553.pool.root.1' --outputESDFile=myESD.pool.root --outputESDFile=myAOD.pool.root --maxEvents=25 --AMI q221 --preExec='rec.doMemoryAuditor=True'; - - Valgrind_JobTransforms - long - - - - RAW to AOD stdcmalloc - RAWtoESD_MC_AthMemoryAuditor_stdcmalloc - - Reco_tf.py --inputHITSFile='/afs/cern.ch/atlas/project/rig/valid1.110401.PowhegPythia_P2012_ttbar_nonallhad.simul.HITS.e3099_s2082_tid01614220_00/HITS.01614220._000553.pool.root.1' --outputESDFile=myESD.pool.root --outputESDFile=myAOD.pool.root --maxEvents=25 --AMI q221 --preExec='rec.doMemoryAuditor=True' --athenaopts='--stdcmalloc'; - - Valgrind_JobTransforms - long - - - - RAW to AOD tcmalloc - RAWtoESD_MC_AthMemoryAuditor_stdcmalloc - - Reco_tf.py --inputHITSFile='/afs/cern.ch/atlas/project/rig/valid1.110401.PowhegPythia_P2012_ttbar_nonallhad.simul.HITS.e3099_s2082_tid01614220_00/HITS.01614220._000553.pool.root.1' --outputESDFile=myESD.pool.root --outputESDFile=myAOD.pool.root --maxEvents=25 --AMI q431 --preExec='rec.doMemoryAuditor=True'; - - Valgrind_JobTransforms - long - - - - RAW to AOD stdcmalloc - RAWtoESD_MC_AthMemoryAuditor_stdcmalloc - - Reco_tf.py --inputHITSFile='/afs/cern.ch/atlas/project/rig/valid1.110401.PowhegPythia_P2012_ttbar_nonallhad.simul.HITS.e3099_s2082_tid01614220_00/HITS.01614220._000553.pool.root.1' --outputESDFile=myESD.pool.root --outputESDFile=myAOD.pool.root --maxEvents=25 --AMI q431 --preExec='rec.doMemoryAuditor=True' --athenaopts='--stdcmalloc'; - - Valgrind_JobTransforms - long - - - - - - - - - *.root - *log* - *.log.gz - *.txt - *.py - *.eps - *.jpg - *.html - html/*.html - processed/*.eps - valgrind.* - callgrind.* - massif.* - processed/*.htm - Report.html - processed/*.gif - rec.pkg.pkl - rec.pkl - log.RAWtoESD - log.ESDtoAOD - memConsumption.C - historyNightlies.C - processValgrindOutput.sh - dhat-postprocess.pl - - - - PostProcessValgrind - PostProcessValgrind - - - - - Top - CheckFileRunner0 - - - - - - - -