Geant4-11
G4ExitonConfiguration.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// 20100909 Add function to reset values to zero
28// 20100924 Migrate to integer A and Z
29// 20110225 M. Kelsey -- Add equality operator (NOT sorting!)
30// 20110922 M. Kelsey -- Replace print() with stream operator<<(), put
31// implementation into new .cc file.
32// 20121009 M. Kelsey -- Add empty() test for no excitons, fix constness
33// 20130622 M. Kelsey -- Add interface to copy data from G4Fragment
34
35#ifndef G4EXITON_CONFIGURATION_HH
36#define G4EXITON_CONFIGURATION_HH
37
38#include "globals.hh"
39#include <iosfwd>
40
41class G4Fragment;
42
44public:
48
51 protonHoles(qph), neutronHoles(qnh) {}
52
53 explicit G4ExitonConfiguration(const G4Fragment& frag)
55 protonHoles(0), neutronHoles(0) { fill(frag); }
56
57
58 void clear() {
61 }
62
63 bool empty() const {
65 protonHoles==0 && neutronHoles==0);
66 }
67
68 void fill(const G4Fragment& frag); // Initialize from G4Fragment data
69
71 return ( (&right == this) ||
74 protonHoles == right.protonHoles &&
75 neutronHoles == right.neutronHoles) );
76 }
77
79 return !operator==(right);
80 }
81
82
83 // Modify configuration
84
85 void incrementQP(G4int ip) {
86 if (ip == 1) protonQuasiParticles++;
87 else if (ip == 2) neutronQuasiParticles++;
88 }
89
91 if (ip == 1) protonHoles++;
92 else if (ip == 2) neutronHoles++;
93 }
94
99};
100
101// Dump information to output
102
103std::ostream& operator<<(std::ostream& os, const G4ExitonConfiguration& ex);
104
105#endif // G4EXITON_CONFIGURATION_HH
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4bool operator!=(const G4ExitonConfiguration &right) const
G4bool operator==(const G4ExitonConfiguration &right) const
void fill(const G4Fragment &frag)
G4ExitonConfiguration(const G4Fragment &frag)
G4ExitonConfiguration(G4int qpp, G4int qnp, G4int qph, G4int qnh)
std::ostream & operator<<(std::ostream &, const BasicVector3D< float > &)