Files
geant4/source/processes/hadronic/models/particle_hp/include/G4ParticleHPReactionWhiteBoard.hh
2024-12-06 11:11:40 +01:00

74 lines
2.8 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 G4ParticleHPReactionWhiteBoard_h
#define G4ParticleHPReactionWhiteBoard_h 1
// Class Description
// Keep Information of Current Interaction
// Class Description - End
// 121031 First implementation done by T. Koi (SLAC/PPA)
//
#include "globals.hh"
#include <map>
class G4ParticleHPReactionWhiteBoard
{
public:
G4ParticleHPReactionWhiteBoard();
~G4ParticleHPReactionWhiteBoard();
void Dump() const;
void SetTargZ(G4int Z) { targZ = Z; };
void SetTargA(G4int A) { targA = A; };
void SetTargM(G4int M) { targM = M; };
G4int GetTargZ() const { return targZ; };
G4int GetTargA() const { return targA; };
G4int GetTargM() const { return targM; };
G4bool AddRecord(std::pair<G4String, G4String>);
G4String GetValue(const G4String&) const;
// "0" or "0.0" will retrun for invalid key by following two methods
G4int GetValueInInt(const G4String&) const;
G4double GetValueInDouble(const G4String&) const;
private:
G4int targZ{0};
G4int targA{0};
G4int targM{0};
std::map<G4String, G4String> mapStringPair;
//,,,
};
#endif