File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed
Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -69,26 +69,25 @@ StepInfo::StepInfo(TVirtualMC* mc)
6969 lookupstructures.insertModuleName (volId, iter->second );
7070 }
7171 else {
72- // std::cout << "VOL NOT FOUND .. GO UP UNTIL WE FIND A KNOWN VOLUME NAME " << volname << "\n";
73- // trying to look upward
72+ // std::cout << "VOL NOT FOUND .. GO UP UNTIL WE FIND A KNOWN VOLUME NAME " << volname << "\n";
73+ // trying to look upward
7474 int up = 1 ;
75- int upcopy;
75+ int upcopy;
7676 int upVolID;
77- const char * upVolName;
77+ const char * upVolName;
7878 int limit = 20 ;
79- do {
80- upVolID = mc->CurrentVolOffID (up,upcopy);
81- upVolName = mc->CurrentVolOffName (up);
79+ do {
80+ upVolID = mc->CurrentVolOffID (up, upcopy);
81+ upVolName = mc->CurrentVolOffName (up);
8282 up++;
83- auto iter2 = volnametomodulemap->find (upVolName);
83+ auto iter2 = volnametomodulemap->find (upVolName);
8484 if (iter2 != volnametomodulemap->end ()) {
85- lookupstructures.insertModuleName (volId, iter2->second );
86- // std::cout << "FIXING TO " << iter2->second;
87- break ;
88- }
89- }
90- while (up < limit);
91- //
85+ lookupstructures.insertModuleName (volId, iter2->second );
86+ // std::cout << "FIXING TO " << iter2->second;
87+ break ;
88+ }
89+ } while (up < limit);
90+ //
9291 }
9392 }
9493 }
You can’t perform that action at this time.
0 commit comments