Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -27,32 +27,28 @@
#define G4ITDecayChannel_h 1
#include <CLHEP/Units/SystemOfUnits.h>
#include "globals.hh"
#include "G4NuclearDecayChannel.hh"
////////////////////////////////////////////////////////////////////////////////
//
class G4ITDecayChannel : public G4NuclearDecayChannel
{
// class description
//
// Derived class from G4NuclearDecayChannel. It is specific for
// Isomeric Transitions
// Specific decay channel for isomeric transitions
//
// class description - end
public:
G4ITDecayChannel (G4int Verbose,
const G4Ions *theParentNucleus,
G4double theBR) :
G4NuclearDecayChannel (IT, Verbose, theParentNucleus, theBR, 0.0,
theParentNucleus->GetBaryonNumber(),
int(theParentNucleus->GetPDGCharge()/CLHEP::eplus),
theParentNucleus->GetExcitationEnergy())
G4ITDecayChannel(G4int Verbose, const G4Ions* theParentNucleus,
G4double theBR)
: G4NuclearDecayChannel(IT, Verbose, theParentNucleus, theBR, 0.0,
theParentNucleus->GetBaryonNumber(),
G4int(theParentNucleus->GetPDGCharge()/CLHEP::eplus),
theParentNucleus->GetExcitationEnergy())
{
#ifdef G4VERBOSE
if (GetVerboseLevel()>1)
G4cout <<"G4ITDecayChannel constructor" << G4endl;
if (GetVerboseLevel() > 1)
G4cout << "G4ITDecayChannel constructor" << G4endl;
#endif
}
~G4ITDecayChannel () {;}