Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -23,20 +23,17 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
// ----------------------------------------------------------------------
// Class G4Nsplit_Weight
// G4Nsplit_Weight
//
// Class description:
//
// A class (struct) used by importance sampling. It contains the number
// of tracks a mother track should be split into and their weight.
// Author: Michael Dressel (Michael.Dressel@cern.ch)
// Author: Michael Dressel (CERN), 2002
// ----------------------------------------------------------------------
#ifndef G4Nsplit_Weight_hh
#define G4Nsplit_Weight_hh G4Nsplit_Weight_hh
#ifndef G4NSPLIT_WEIGHT_HH
#define G4NSPLIT_WEIGHT_HH 1
#include "globals.hh"
@@ -44,26 +41,14 @@ class G4Nsplit_Weight
{
public:
G4int fN;
// number of tracks a mother track should be split into
// including the mother track
G4int fN = 0;
// number of tracks a mother track should be split into
// including the mother track
G4double fW;
// the weight to be given to the tracks
G4double fW = 0.0;
// the weight to be given to the tracks
};
std::ostream& operator<<(std::ostream &out,
const G4Nsplit_Weight &nw);
std::ostream& operator<<(std::ostream& out, const G4Nsplit_Weight& nw);
#endif