diff --git a/SimG4Core/Notification/src/GenParticleInfoExtractor.cc b/SimG4Core/Notification/src/GenParticleInfoExtractor.cc index 4cc020dfd6a9f..4a562dc58db24 100644 --- a/SimG4Core/Notification/src/GenParticleInfoExtractor.cc +++ b/SimG4Core/Notification/src/GenParticleInfoExtractor.cc @@ -13,9 +13,9 @@ const GenParticleInfo &GenParticleInfoExtractor::operator()(const G4PrimaryParti GenParticleInfo *gpi = dynamic_cast(up); if (gpi == nullptr) G4Exception("SimG4Core/Notification", - "mc001", - FatalException, - "GenParticleInfoExtractor: user information in G4PrimaryParticle is not of GenParticleInfo type"); + "mc001", + FatalException, + "GenParticleInfoExtractor: user information in G4PrimaryParticle is not of GenParticleInfo type"); } return *gpi; } diff --git a/SimG4Core/Notification/src/NewTrackAction.cc b/SimG4Core/Notification/src/NewTrackAction.cc index dd295aebb35bc..e6ed0dc397dcd 100644 --- a/SimG4Core/Notification/src/NewTrackAction.cc +++ b/SimG4Core/Notification/src/NewTrackAction.cc @@ -43,10 +43,8 @@ void NewTrackAction::addUserInfoToPrimary(G4Track *aTrack) const { void NewTrackAction::addUserInfoToSecondary(G4Track *aTrack, const TrackInformation &motherInfo, int flag) const { TrackInformation *trkInfo = new TrackInformation(); - LogDebug("SimG4CoreApplication") << "NewTrackAction called for " - << aTrack->GetTrackID() - << " mother " << motherInfo.isPrimary() - << " flag " << flag; + LogDebug("SimG4CoreApplication") << "NewTrackAction called for " << aTrack->GetTrackID() << " mother " + << motherInfo.isPrimary() << " flag " << flag; // Take care of cascade decays if (flag == 1) {