Skip to content

Commit f85bd63

Browse files
authored
Fix formatting in Stack.h while loop condition
1 parent 106d380 commit f85bd63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Detectors/Base/include/DetectorsBase

Detectors/Base/include/DetectorsBase/Stack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ inline bool Stack::isFromRadDecay(const int id)
370370
// search in particle history
371371
auto imo = mTrackIDtoParticlesEntry[part.getMotherTrackId()];
372372
auto isRad = false;
373-
while (imo > 0 ) {
373+
while (imo > 0) {
374374
auto mother = (mParticles[imo]);
375375
if (mother.getProcess() == kPRadDecay) {
376376
isRad = true;

0 commit comments

Comments
 (0)