130 lines
4.0 KiB
C++
130 lines
4.0 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// P. Arce, June-2014 Conversion neutron_hp to particle_hp
|
|
//
|
|
#ifndef G4ParticleHPHash_h
|
|
#define G4ParticleHPHash_h
|
|
|
|
#include "G4ParticleHPDataPoint.hh"
|
|
#include "globals.hh"
|
|
|
|
#include <vector>
|
|
|
|
class G4ParticleHPHash
|
|
{
|
|
public:
|
|
G4ParticleHPHash()
|
|
{
|
|
theUpper = nullptr;
|
|
prepared = false;
|
|
}
|
|
|
|
~G4ParticleHPHash() { delete theUpper; }
|
|
|
|
G4ParticleHPHash(const G4ParticleHPHash& aHash)
|
|
{
|
|
theIndex = aHash.theIndex;
|
|
theData = aHash.theData;
|
|
prepared = aHash.prepared;
|
|
if (aHash.theUpper != nullptr) {
|
|
theUpper = new G4ParticleHPHash(*(aHash.theUpper));
|
|
}
|
|
else {
|
|
theUpper = nullptr;
|
|
}
|
|
}
|
|
|
|
G4ParticleHPHash& operator=(const G4ParticleHPHash& aHash)
|
|
{
|
|
if (&aHash != this) {
|
|
theIndex = aHash.theIndex;
|
|
theData = aHash.theData;
|
|
if (aHash.theUpper != nullptr) {
|
|
theUpper = new G4ParticleHPHash(*(aHash.theUpper));
|
|
}
|
|
else {
|
|
theUpper = nullptr;
|
|
}
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
void Clear()
|
|
{
|
|
if (theUpper != nullptr) {
|
|
theUpper->Clear();
|
|
delete theUpper;
|
|
theUpper = nullptr;
|
|
}
|
|
theIndex.clear();
|
|
theData.clear();
|
|
prepared = false;
|
|
}
|
|
|
|
G4bool Prepared() const { return prepared; }
|
|
inline void SetData(G4int index, G4double x, G4double y)
|
|
{
|
|
prepared = true;
|
|
G4ParticleHPDataPoint aPoint;
|
|
aPoint.SetData(x, y);
|
|
theData.push_back(aPoint);
|
|
theIndex.push_back(index);
|
|
if (0 == theData.size() % 10 && !theData.empty()) {
|
|
if (nullptr == theUpper) theUpper = new G4ParticleHPHash();
|
|
theUpper->SetData(static_cast<G4int>(theData.size()) - 1, x, y);
|
|
}
|
|
}
|
|
|
|
G4int GetMinIndex(G4double e) const
|
|
{
|
|
G4int result = -1;
|
|
if (theData.empty()) return 0;
|
|
if (theData[0].GetX() > e) return 0;
|
|
|
|
G4int lower = 0;
|
|
if (theUpper != nullptr) {
|
|
lower = theUpper->GetMinIndex(e);
|
|
}
|
|
unsigned int i;
|
|
for (i = lower; i < theData.size(); i++) {
|
|
if (theData[i].GetX() > e) {
|
|
result = theIndex[i - 1];
|
|
break;
|
|
}
|
|
}
|
|
if (result == -1) result = theIndex[theIndex.size() - 1];
|
|
return result;
|
|
}
|
|
|
|
private:
|
|
G4bool prepared;
|
|
G4ParticleHPHash* theUpper;
|
|
std::vector<int> theIndex;
|
|
std::vector<G4ParticleHPDataPoint> theData; // the data
|
|
};
|
|
#endif
|