Import Geant4 5.2.0 source tree
This commit is contained in:
+3
-3
@@ -28,7 +28,7 @@
|
||||
#include "G4VCrossSectionSource.hh"
|
||||
#include "G4VAngularDistribution.hh"
|
||||
#include "G4KineticTrackVector.hh"
|
||||
#include "g4std/vector"
|
||||
#include <vector>
|
||||
|
||||
class G4CollisionNNToDeltaDelta1900 : public G4GeneralNNCollision
|
||||
{
|
||||
@@ -41,10 +41,10 @@ public:
|
||||
|
||||
|
||||
virtual G4String GetName() const { return "NN -> Delta Delta(1900) Collision"; }
|
||||
virtual const G4std::vector<G4String>& GetListOfColliders(G4int whichOne) const
|
||||
virtual const std::vector<G4String>& GetListOfColliders(G4int ) const
|
||||
{
|
||||
G4Exception("Tried to call G4CollisionNNToDeltaDelta1900::GetListOfColliders. Please find out why!");
|
||||
G4std::vector<G4String> * aList = new G4std::vector<G4String>;
|
||||
std::vector<G4String> * aList = new std::vector<G4String>;
|
||||
return *aList;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user