Skip to content
Snippets Groups Projects
Commit 9efb75f3 authored by Tomasz Bold's avatar Tomasz Bold
Browse files

Deleting the list w/o deleting the streamers

parent 2d7482cb
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!31455Delete streamers at the end of the job to avoid the mem leak
......@@ -258,7 +258,6 @@ StatusCode TrigTSerializer::finalize(){
}
if (!reported)
ATH_MSG_INFO( name() << " no problems encountered" );
delete m_streamersList;
return StatusCode::SUCCESS;
}
......@@ -268,8 +267,8 @@ void TrigTSerializer::add_previous_streamerinfos(){
std::string extFile = PathResolver::find_file (extStreamerInfos, "DATAPATH");
ATH_MSG_DEBUG( "Using " << extFile );
TFile f(extFile.c_str());
m_streamersList = f.GetStreamerInfoList();
TIter nextinfo(m_streamersList);
TList* streamersList = f.GetStreamerInfoList();
TIter nextinfo(streamersList);
while (TObject* obj = nextinfo()) {
TStreamerInfo *inf = dynamic_cast<TStreamerInfo*> (obj);
if (!inf) continue;
......@@ -284,9 +283,11 @@ void TrigTSerializer::add_previous_streamerinfos(){
//this triggers a crash on lcg60
TClass *cl = inf->GetClass();
if (cl)
ATH_MSG_DEBUG( "external TStreamerInfo for " << cl->GetName()
ATH_MSG_WARNING( "external TStreamerInfo for " << cl->GetName()
<< " checksum: " << inf->GetCheckSum() );
}
streamersList->SetOwner(false);
streamersList->Clear("nodelete");
f.Close();
}
......
......@@ -83,7 +83,6 @@ private:
//static bool m_reportError;
uint32_t m_IgnoreErrLvl;
std::map<std::string, uint32_t> m_errCount;
TList *m_streamersList;
};
#undef REFLEX_NS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment