Skip to content
Snippets Groups Projects
Commit e4e2fcc9 authored by John Chapman's avatar John Chapman
Browse files

Fixing include guards

parent 10f93f02
No related branches found
No related tags found
No related merge requests found
......@@ -39,8 +39,8 @@
// - Created: I.Gavrilenko 15.05.2009
// -------------------------------------------------------------------
#ifndef G4ATLASRK4_HH
#define G4ATLASRK4_HH
#ifndef G4ATLASNEWRK4_HH
#define G4ATLASNEWRK4_HH
#include "G4MagIntegratorStepper.hh"
#include "G4Mag_EqRhs.hh"
......@@ -136,4 +136,4 @@ G4AtlasNewRK4::RightHandSide(const G4double P[],G4double dPdS[])
dPdS[5] = m_cof*(P[3]*m_field[1]-P[4]*m_field[0]) ; // dPz/ds
}
#endif // G4ATLASRK4_HH
#endif // G4ATLASNEWRK4_HH
......@@ -41,8 +41,8 @@
// - Adaptations: J. Apostolakis May-Nov 2009
// -------------------------------------------------------------------
#ifndef G4NYSTROMRK4_HH
#define G4NYSTROMRK4_HH
#ifndef G4NYSTROMNEWRK4_HH
#define G4NYSTROMNEWRK4_HH
#include "globals.hh"
#include "G4MagIntegratorStepper.hh"
......@@ -133,4 +133,4 @@ inline void G4NystromNewRK4::getField (const G4double P[4])
m_fEq->GetFieldValue(m_fldPosition, m_lastField);
}
}
#endif // G4NYSTROMRK4
#endif // G4NYSTROMNEWRK4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment