Skip to content

Commit cd5a8ca

Browse files
committed
clang-format
1 parent 2e742e5 commit cd5a8ca

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

src/StepInfo.cxx

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)