Skip to content
Snippets Groups Projects
Commit 8ccd9799 authored by Takahiro Shiomi's avatar Takahiro Shiomi
Browse files

Fixed TGCGoodMF

parent 16263dc8
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ bool TGCGoodMF::readBadMFList()
// get BadMF list
getline(file,buf,delimiter);
std::istringstream cont(buf);
std::map<int,int> mapssc = m_mapisgoodMF[mod]; // mapssc = <SSCId,badMFId>, m_mapisgoodMF = <ModuleId,<~>>
std::map<int,int>& mapssc = m_mapisgoodMF[mod]; // mapssc = <SSCId,badMFId>, m_mapisgoodMF = <ModuleId,<~>>
int badMFId;
for(int i=0; i<=maxssc; i++) {
cont>>badMFId;
......
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