Import Geant4 11.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2025-12-05 08:54:02 +01:00
parent a499fb82e9
commit b4a16de652
6484 changed files with 232674 additions and 221097 deletions
@@ -36,11 +36,12 @@
#include "globals.hh"
#include "G4INCLParticle.hh"
#include "G4INCLNucleus.hh"
#include "G4INCLIChannel.hh"
#include "G4INCLFinalState.hh"
#include "G4INCLAllocationPool.hh"
#include "G4INCLFinalState.hh"
#include "G4INCLIChannel.hh"
#include "G4INCLNucleus.hh"
#include "G4INCLParticle.hh"
#include "G4INCLSrcChannel.hh"
#ifndef G4INCLElasticChannel_HH_
#define G4INCLElasticChannel_HH_ 1
@@ -49,17 +50,19 @@ namespace G4INCL {
class ElasticChannel : public IChannel {
public:
ElasticChannel(Particle *p1, Particle *p2);
ElasticChannel(Particle *p1, Particle *p2, Nucleus *n = nullptr);
virtual ~ElasticChannel();
void fillFinalState(FinalState *fs);
private:
Particle *particle1, *particle2;
Nucleus *thenucleus;
SrcChannel *srcChannel;
INCL_DECLARE_ALLOCATION_POOL(ElasticChannel)
};
}
} // namespace G4INCL
#endif