Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4XNNElastic Class Reference

#include <G4XNNElastic.hh>

Inheritance diagram for G4XNNElastic:
G4CrossSectionPatch G4VCrossSectionSource

Public Member Functions

 G4XNNElastic ()
 
virtual ~G4XNNElastic ()
 
G4bool operator== (const G4XNNElastic &right) const
 
G4bool operator!= (const G4XNNElastic &right) const
 
virtual const
G4CrossSectionVector
GetComponents () const
 
virtual G4String Name () const
 
- Public Member Functions inherited from G4CrossSectionPatch
 G4CrossSectionPatch ()
 
virtual ~G4CrossSectionPatch ()
 
G4bool operator== (const G4CrossSectionPatch &right) const
 
G4bool operator!= (const G4CrossSectionPatch &right) const
 
virtual G4double CrossSection (const G4KineticTrack &trk1, const G4KineticTrack &trk2) const
 
virtual G4bool IsValid (G4double e) const
 
- Public Member Functions inherited from G4VCrossSectionSource
 G4VCrossSectionSource ()
 
virtual ~G4VCrossSectionSource ()
 
G4bool operator== (const G4VCrossSectionSource &right) const
 
G4bool operator!= (const G4VCrossSectionSource &right) const
 
virtual void Print () const
 
virtual void PrintAll (const G4KineticTrack &trk1, const G4KineticTrack &trk2) const
 
virtual G4double HighLimit () const
 
virtual G4double LowLimit () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4CrossSectionPatch
G4double Transition (const G4KineticTrack &trk1, const G4KineticTrack &trk2, const G4VCrossSectionSource *comp1, const G4VCrossSectionSource *comp2) const
 
G4double Transition (G4double ecm, G4double sigma1, G4double sigma2, G4double e1, G4double e2) const
 
- Protected Member Functions inherited from G4VCrossSectionSource
G4bool InLimits (G4double e, G4double eLow, G4double eHigh) const
 
const G4ParticleDefinitionFindLightParticle (const G4KineticTrack &trk1, const G4KineticTrack &trk2) const
 
G4double FcrossX (G4double e, G4double e0, G4double sigma, G4double eParam, G4double power) const
 
G4ParticleDefinitionFindKeyParticle (const G4KineticTrack &trk1, const G4KineticTrack &trk2) const
 
G4double GetTransversePionMass () const
 
G4double GetMinStringMass () const
 

Detailed Description

Definition at line 50 of file G4XNNElastic.hh.

Constructor & Destructor Documentation

G4XNNElastic::G4XNNElastic ( )

Definition at line 53 of file G4XNNElastic.cc.

54 {
55  components = new G4CrossSectionVector;
56 
57  G4VCrossSectionSource* xNNElasticLowE = new G4XNNElasticLowE;
58  components->push_back(xNNElasticLowE);
59 
60  G4VCrossSectionSource* xNNElasticHighE = new G4XPDGElastic;
61  components->push_back(xNNElasticHighE);
62 }
std::vector< G4CrossSectionSourcePtr > G4CrossSectionVector
G4XNNElastic::~G4XNNElastic ( )
virtual

Definition at line 65 of file G4XNNElastic.cc.

References GetComponents(), and nComponents.

66 {
67  if (components != 0)
68  {
69  G4int nComponents = this->GetComponents()->size();
70  G4int i;
71  for (i=0; i<nComponents; i++)
72  {
73  G4CrossSectionSourcePtr componentPtr = (*components)[i];
74  G4VCrossSectionSource* component = componentPtr();
75  delete component;
76  component = 0;
77  componentPtr = 0;
78  }
79  }
80  delete components;
81  components = 0;
82 }
G4int nComponents
Definition: TRTMaterials.hh:41
int G4int
Definition: G4Types.hh:78
virtual const G4CrossSectionVector * GetComponents() const
Definition: G4XNNElastic.hh:62

Member Function Documentation

virtual const G4CrossSectionVector* G4XNNElastic::GetComponents ( ) const
inlinevirtual

Implements G4CrossSectionPatch.

Definition at line 62 of file G4XNNElastic.hh.

Referenced by ~G4XNNElastic().

62 { return components; }
G4String G4XNNElastic::Name ( ) const
virtual

Implements G4VCrossSectionSource.

Definition at line 97 of file G4XNNElastic.cc.

98 {
99  G4String name("NNElastic");
100  return name;
101 }
const XML_Char * name
G4bool G4XNNElastic::operator!= ( const G4XNNElastic right) const

Definition at line 91 of file G4XNNElastic.cc.

92 {
93  return (this != (G4XNNElastic*) &right);
94 }
G4bool G4XNNElastic::operator== ( const G4XNNElastic right) const

Definition at line 85 of file G4XNNElastic.cc.

86 {
87  return (this == (G4XNNElastic*) &right);
88 }

The documentation for this class was generated from the following files: