Import Geant4 10.6.0.beta source tree
This commit is contained in:
+2
-2
@@ -44,8 +44,8 @@ class G4ExcitedStringDecay: public G4VStringFragmentation
|
||||
private:
|
||||
G4ExcitedStringDecay(const G4ExcitedStringDecay &right);
|
||||
const G4ExcitedStringDecay & operator=(const G4ExcitedStringDecay &right);
|
||||
int operator==(const G4ExcitedStringDecay &right) const;
|
||||
int operator!=(const G4ExcitedStringDecay &right) const;
|
||||
G4bool operator==(const G4ExcitedStringDecay &right) const;
|
||||
G4bool operator!=(const G4ExcitedStringDecay &right) const;
|
||||
|
||||
public:
|
||||
|
||||
|
||||
+4
-4
@@ -61,9 +61,9 @@ class G4FragmentingString
|
||||
~G4FragmentingString();
|
||||
|
||||
G4FragmentingString& operator=(const G4FragmentingString &);
|
||||
int operator==(const G4FragmentingString &right) const;
|
||||
G4bool operator==(const G4FragmentingString &right) const;
|
||||
|
||||
int operator!=(const G4FragmentingString &right) const;
|
||||
G4bool operator!=(const G4FragmentingString &right) const;
|
||||
|
||||
|
||||
G4LorentzVector Get4Momentum() const;
|
||||
@@ -118,13 +118,13 @@ class G4FragmentingString
|
||||
};
|
||||
|
||||
inline
|
||||
int G4FragmentingString::operator==(const G4FragmentingString &right) const
|
||||
G4bool G4FragmentingString::operator==(const G4FragmentingString &right) const
|
||||
{
|
||||
return this == &right;
|
||||
}
|
||||
|
||||
inline
|
||||
int G4FragmentingString::operator!=(const G4FragmentingString &right) const
|
||||
G4bool G4FragmentingString::operator!=(const G4FragmentingString &right) const
|
||||
{
|
||||
return this != &right;
|
||||
}
|
||||
|
||||
+2
-2
@@ -51,8 +51,8 @@ private:
|
||||
// not implemented to protect/forbid use
|
||||
G4LundStringFragmentation(const G4LundStringFragmentation &right);
|
||||
const G4LundStringFragmentation & operator=(const G4LundStringFragmentation &right);
|
||||
int operator==(const G4LundStringFragmentation &right) const;
|
||||
int operator!=(const G4LundStringFragmentation &right) const;
|
||||
G4bool operator==(const G4LundStringFragmentation &right) const;
|
||||
G4bool operator!=(const G4LundStringFragmentation &right) const;
|
||||
|
||||
private:
|
||||
void SetMinMasses();
|
||||
|
||||
+2
-2
@@ -47,8 +47,8 @@ class G4QGSMFragmentation:public G4VLongitudinalStringDecay
|
||||
// not implemented to protect/forbid use
|
||||
G4QGSMFragmentation(const G4QGSMFragmentation &right);
|
||||
const G4QGSMFragmentation & operator=(const G4QGSMFragmentation &right);
|
||||
int operator==(const G4QGSMFragmentation &right) const;
|
||||
int operator!=(const G4QGSMFragmentation &right) const;
|
||||
G4bool operator==(const G4QGSMFragmentation &right) const;
|
||||
G4bool operator!=(const G4QGSMFragmentation &right) const;
|
||||
|
||||
private:
|
||||
void SetMinMasses();
|
||||
|
||||
+2
-2
@@ -52,8 +52,8 @@ class G4VLongitudinalStringDecay
|
||||
// not implemented to protect/forbid use
|
||||
G4VLongitudinalStringDecay(const G4VLongitudinalStringDecay &right);
|
||||
const G4VLongitudinalStringDecay & operator=(const G4VLongitudinalStringDecay &right);
|
||||
int operator==(const G4VLongitudinalStringDecay &right) const;
|
||||
int operator!=(const G4VLongitudinalStringDecay &right) const;
|
||||
G4bool operator==(const G4VLongitudinalStringDecay &right) const;
|
||||
G4bool operator!=(const G4VLongitudinalStringDecay &right) const;
|
||||
|
||||
public:
|
||||
virtual G4KineticTrackVector* FragmentString(const G4ExcitedString& theString)=0;
|
||||
|
||||
Reference in New Issue
Block a user