127 lines
4.3 KiB
C++
127 lines
4.3 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: XrayFluoDataSet.hh
|
|
// GEANT4 tag $Name: xray_fluo-V03-02-00
|
|
//
|
|
// Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
|
|
//
|
|
// History:
|
|
// -----------
|
|
// 28 Nov 2001 Elena Guardincerri Created
|
|
// 2001 - 2009 Alfonso Mantero Mantained
|
|
// -------------------------------------------------------------------
|
|
|
|
//for the documentation of this class see also G4EMDataSet class
|
|
|
|
#ifndef FluoDataSet_hh
|
|
#define FluoDataSet_hh 1
|
|
|
|
#include <CLHEP/Units/SystemOfUnits.h>
|
|
|
|
#include "globals.hh"
|
|
#include "G4DataVector.hh"
|
|
#include "G4VEMDataSet.hh"
|
|
|
|
class G4VDataSetAlgorithm;
|
|
|
|
class XrayFluoDataSet : public G4VEMDataSet {
|
|
|
|
public:
|
|
|
|
XrayFluoDataSet(G4int Z,
|
|
G4DataVector* points,
|
|
G4DataVector* values,
|
|
const G4VDataSetAlgorithm* interpolation,
|
|
G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn);
|
|
|
|
XrayFluoDataSet(G4int Z,
|
|
const G4String& dataFile,
|
|
const G4VDataSetAlgorithm* interpolation,
|
|
G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn);
|
|
|
|
~XrayFluoDataSet();
|
|
|
|
//find the value corresponding to the energy e in the set
|
|
//identified by id
|
|
G4double FindValue(G4double e, G4int) const;
|
|
|
|
virtual const G4VEMDataSet* GetComponent(G4int) const { return 0;}
|
|
|
|
virtual void AddComponent(G4VEMDataSet*) { }
|
|
|
|
virtual size_t NumberOfComponents() const { return 0; }
|
|
|
|
virtual void SetEnergiesData(G4DataVector*, G4DataVector*, int
|
|
= 0) {}
|
|
|
|
virtual G4bool SaveData(const G4String&) const {return true;}
|
|
|
|
virtual G4double RandomSelect(int = 0) const {return 0;}
|
|
|
|
void PrintData() const;
|
|
|
|
const G4DataVector& GetEnergies(G4int) const { return *energies; }
|
|
const G4DataVector& GetData(G4int) const { return *data; }
|
|
|
|
virtual const G4DataVector& GetLogEnergies(G4int ) const { return *energies; }
|
|
virtual const G4DataVector& GetLogData(G4int ) const { return *data; }
|
|
// void SetEnergiesData(G4DataVector* x, G4DataVector* data, G4int component=0) {;}
|
|
|
|
virtual void SetLogEnergiesData(G4DataVector* ,
|
|
G4DataVector* ,
|
|
G4DataVector* ,
|
|
G4DataVector* ,
|
|
G4int ) {;}
|
|
|
|
virtual G4bool LoadNonLogData(const G4String& ) {return false;}
|
|
|
|
// G4bool SaveData(const G4String& fileName) const {return 0;}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
G4bool LoadData(const G4String& dataFile);
|
|
|
|
G4int z;
|
|
G4int FindBinLocation(G4double energy) const;
|
|
|
|
G4DataVector* energies; // Owned pointer
|
|
G4DataVector* data; // Owned pointer
|
|
|
|
const G4VDataSetAlgorithm* algorithm; // Not owned pointer
|
|
|
|
G4double unit1;
|
|
G4double unit2;
|
|
|
|
size_t numberOfBins;
|
|
|
|
};
|
|
|
|
#endif
|