4 #include "KVRangeYanez.h"
5 #include "KVRangeYanezMaterial.h"
6 #include "KVElementDensity.h"
7 #include "KVElementDensityTable.h"
8 #include "KVNDTManager.h"
10 #include "KVNucleus.h"
11 #include "KVNumberList.h"
12 #include <KVSystemDirectory.h>
13 #include <KVSystemFile.h>
14 #include <Riostream.h>
43 "Interface to Range dE/dx and range library (Ricardo Yanez)")
63 KVString DataFilePaths = gEnv->GetValue(
"RANGE.PredefMaterials",
"");
64 DataFilePaths.
Begin(
" ");
67 while (!DataFilePaths.
End()) {
68 nextPath = DataFilePaths.
Next();
69 if (nextPath == lastPath)
break;
138 printf(
"KVRangeYanez::%s\n%s\n", GetName(), GetTitle());
141 printf(
"\nEnergy loss & range tables loaded for %d materials:\n\n",
fMaterials->GetEntries());
145 printf(
"\nEnergy loss & range tables loaded for 0 materials.\n");
165 TObjArray* list =
new TObjArray(
fMaterials->GetEntries());
166 list->SetOwner(kTRUE);
170 list->Add(
new TNamed(mat->GetName(), mat->
GetType()));
223 Error(
"AddElementalMaterial",
224 "Nuclear data tables have not been initialised");
229 Error(
"AddElementalMaterial",
230 "No element found in ElementDensity NDT-table with Z=%d", z);
233 TString state =
"solid";
234 if (ed->
IsGas()) state =
"gas";
260 const Char_t* name,
const Char_t* symbol,
261 Int_t nelem, Int_t* z, Int_t* a, Int_t* natoms, Double_t density)
const
273 TString state =
"gas";
274 if (density > 0) state =
"solid";
277 for (
int i = 0; i < nelem; i++) {
302 const Char_t* name,
const Char_t* symbol,
303 Int_t nelem, Int_t* z, Int_t* a, Int_t* natoms, Double_t* proportion, Double_t density)
const
316 TString state =
"gas";
317 if (density > 0) state =
"solid";
320 for (
int i = 0; i < nelem; i++) {
354 Error(
"MakeNaturallyOccuringElementMixture",
355 "Nuclear data tables have not been initialised");
360 Error(
"AddElementalMaterial",
361 "No element found in ElementDensity NDT-table with Z=%d", z);
368 while (!isotopes.
End()) {
376 TString state =
"solid";
377 if (ed->
IsGas()) state =
"gas";
384 while (!isotopes.
End()) {
402 TString DataFilePath = filename;
406 Error(
"ReadPredefinedMaterials",
"Cannot open %s for reading", DataFilePath.Data());
409 Info(
"ReadPredefinedMaterials",
"Reading materials in file : %s", filename);
413 Bool_t compound, mixture;
414 compound = mixture = kFALSE;
417 while (filestream.good()) {
418 line.ReadLine(filestream);
419 if (filestream.good()) {
420 if (line.BeginsWith(
"//"))
continue;
421 if (line.BeginsWith(
"COMPOUND")) {
425 else if (line.BeginsWith(
"MIXTURE")) {
429 else if (line.BeginsWith(
"ELEMENT")) {
430 compound = mixture = kFALSE;
432 if (compound || mixture) {
435 Double_t density = -1;
439 Double_t proportion[10];
441 line.ReadLine(filestream);
442 while (filestream.good() && !line.IsWhitespace() && line !=
"\n") {
445 if (next ==
"name") name = line.
Next();
446 else if (next ==
"symbol") symbol = line.
Next();
447 else if (next ==
"state") state = line.
Next();
448 else if (next ==
"density") density = line.
Next().Atof();
449 else if (next ==
"nelem") {
450 nelem = line.
Next().Atoi();
451 for (
int i = 0; i < nelem; i++) {
452 line.ReadLine(filestream);
454 element[i] = line.
Next();
459 natoms[i] = line.
Next().Atoi();
460 if (mixture) proportion[i] = line.
Next().Atof();
463 line.ReadLine(filestream, kFALSE);
466 else if (mixture)
AddMixedMaterial(name, symbol, nelem, z, a, natoms, proportion, density);
467 compound = mixture = kFALSE;
472 line.ReadLine(filestream);
473 while (filestream.good() && !line.IsWhitespace() && line !=
"\n") {
476 if (next ==
"name") name = line.
Next();
477 else if (next ==
"symbol") symbol = line.
Next();
478 else if (next ==
"state") state = line.
Next();
479 line.ReadLine(filestream, kFALSE);
513 TString matfilename(mat->GetName());
514 matfilename.ReplaceAll(
" ",
"_");
515 matfilename +=
".dat";
virtual const Char_t * GetType() const
static const Char_t * GetWORKDIRFilePath(const Char_t *namefile="")
static Bool_t SearchAndOpenKVFile(const Char_t *name, KVSQLite::database &dbfile, const Char_t *kvsubdir="")
virtual void Copy(TObject &) const
Make a copy of this object.
Atomic element with name, symbol and density.
const Char_t * GetElementName() const
const Char_t * GetElementSymbol() const
Extended version of ROOT THashList.
Material for use in energy loss & range calculations.
void AddCompoundElement(Int_t Z, Int_t A, Int_t Natoms)
void AddMixtureElement(Int_t Z, Int_t A, Int_t Natoms, Double_t Proportion)
virtual void Initialize()
Abstract base class for calculation of range & energy loss of charged particles in matter.
KVNuclData * GetData(Int_t zz, Int_t aa, const Char_t *name) const
Double_t GetValue() const
Description of properties and kinematics of atomic nuclei.
static Int_t IsMassGiven(const Char_t *)
Double_t GetNaturalA(Int_t zz=-1) const
KVNumberList GetKnownARange(Int_t z=-1, Double_t tmin=0) const
Double_t GetAbundance(Int_t z=-1, Int_t a=-1) const
Int_t GetZ() const
Return the number of proton / atomic number.
Strings used to represent a set of ranges of values.
Description of absorber for the Range dE/dx and range library.
Interface to Range dE/dx and range library.
virtual KVIonRangeTableMaterial * AddMixedMaterial(const Char_t *name, const Char_t *symbol, Int_t nelem, Int_t *z, Int_t *a, Int_t *natoms, Double_t *weight, Double_t density=-1.0) const
Bool_t fDoNotSaveMaterials
TString fLocalMaterialsDirectory
static KVHashList * fMaterials
static list of all currently defined materials
void SaveMaterial(KVIonRangeTableMaterial *mat) const
TObjArray * GetListOfMaterials()
KVIonRangeTableMaterial * GetMaterialWithNameOrType(const Char_t *material) const
void Print(Option_t *="") const
void Copy(TObject &) const
Bool_t ReadMaterials(const Char_t *filename) const
Read materials from file whose name is given.
virtual KVIonRangeTableMaterial * AddCompoundMaterial(const Char_t *name, const Char_t *symbol, Int_t nelem, Int_t *z, Int_t *a, Int_t *natoms, Double_t density=-1.0) const
KVIonRangeTableMaterial * MakeNaturallyOccuringElementMixture(Int_t z, Int_t &a) const
virtual KVIonRangeTableMaterial * AddElementalMaterial(Int_t z, Int_t a=0) const
void CheckMaterialsList() const
virtual void SetOwner(Bool_t enable=kTRUE)
virtual TObject * FindObjectByType(const Char_t *) const
virtual void Add(TObject *obj)
virtual TObject * FindObject(const char *name) const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const
Extension of ROOT TSystemDirectory class, handling browsing directories on disk.
virtual TList * GetListOfFiles() const
Extended ROOT TSystemFile with added info on file size etc.
const Char_t * GetFullPath() const