Import Geant4 5.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:28:22 +02:00
parent fbd4999cf7
commit 4aea781e80
5454 changed files with 223141 additions and 67347 deletions
@@ -126,7 +126,7 @@ void DMXEventActionMessenger::SetNewValue
if(command == DrawHitsCmd) {
G4int vl;
const char* t = newValue;
G4std::istrstream is((char*)t);
std::istrstream is((char*)t);
is >> vl;
eventAction->SetDrawHitsFlag(vl!=0);
}
@@ -134,7 +134,7 @@ void DMXEventActionMessenger::SetNewValue
if(command == SavePmtCmd) {
G4int vl;
const char* t = newValue;
G4std::istrstream is((char*)t);
std::istrstream is((char*)t);
is >> vl;
eventAction->SetSavePmtFlag(vl!=0);
}
@@ -142,7 +142,7 @@ void DMXEventActionMessenger::SetNewValue
if(command == SaveHitsCmd) {
G4int vl;
const char* t = newValue;
G4std::istrstream is((char*)t);
std::istrstream is((char*)t);
is >> vl;
eventAction->SetSaveHitsFlag(vl!=0);
}