File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -117,9 +117,8 @@ Int_t Validate(const char* filename) {
117
117
}
118
118
119
119
if (TMath ::Abs (averagePosition .Mag () - averagePositionRef .Mag ()) / averagePositionRef .Mag () > tolerance ) {
120
- cout << "The average position does not match the reference value of "
121
- << "(" << averagePositionRef .x () << ", " << averagePositionRef .y () << ", "
122
- << averagePositionRef .z () << ") mm" << endl ;
120
+ cout << "The average position does not match the reference value of " << "(" << averagePositionRef .x ()
121
+ << ", " << averagePositionRef .y () << ", " << averagePositionRef .z () << ") mm" << endl ;
123
122
return 12 ;
124
123
}
125
124
Original file line number Diff line number Diff line change @@ -135,9 +135,8 @@ Int_t ValidateMuonsFromPoint(const char* filename) {
135
135
}
136
136
137
137
if (TMath ::Abs (averagePosition .Mag () - averagePositionRef .Mag ()) / averagePositionRef .Mag () > tolerance ) {
138
- cout << "The average position does not match the reference value of "
139
- << "(" << averagePositionRef .x () << ", " << averagePositionRef .y () << ", "
140
- << averagePositionRef .z () << ") mm" << endl ;
138
+ cout << "The average position does not match the reference value of " << "(" << averagePositionRef .x ()
139
+ << ", " << averagePositionRef .y () << ", " << averagePositionRef .z () << ") mm" << endl ;
141
140
return 14 ;
142
141
}
143
142
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ class Particles : public G4VPhysicsConstructor {
14
14
virtual void ConstructParticle ();
15
15
16
16
// This method is dummy
17
- virtual void ConstructProcess (){};
17
+ virtual void ConstructProcess () {};
18
18
};
19
19
#endif
You can’t perform that action at this time.
0 commit comments