Files
geant4/source/processes/electromagnetic/dna/utils/include/G4DNACPA100WaterIonisationStructure.hh
T
2017-06-30 10:49:55 +02:00

73 lines
2.7 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. *
// ********************************************************************
//
// Based on the work of M. Terrissol and M. C. Bordage
//
// Users are requested to cite the following papers:
// - M. Terrissol, A. Baudre, Radiat. Prot. Dosim. 31 (1990) 175-177
// - M.C. Bordage, J. Bordes, S. Edel, M. Terrissol, X. Franceries,
// M. Bardies, N. Lampe, S. Incerti, Phys. Med. 32 (2016) 1833-1840
//
// Authors of this class:
// M.C. Bordage, M. Terrissol, S. Edel, J. Bordes, S. Incerti
//
// 15.01.2014: creation
//
#ifndef G4DNACPA100WaterIonisationStructure_hh
#define G4DNACPA100WaterIonisationStructure_hh 1
#include "globals.hh"
#include <vector>
class G4DNACPA100WaterIonisationStructure
{
public:
G4DNACPA100WaterIonisationStructure();
virtual ~G4DNACPA100WaterIonisationStructure();
G4double IonisationEnergy(G4int level);
G4double UEnergy(G4int level);
G4int NumberOfLevels() { return nLevels; }
// Copy constructor and assignment operator to be added here
private:
// Number of Ionisation levels of the water molecule
G4int nLevels;
std::vector<G4double> energyConstant;
std::vector<G4double> UConstant;
};
#endif