18 #include "Riostream.h"
19 #include "KVMaterial.h"
20 #include "KVNucleus.h"
25 #include "TGeoMaterial.h"
26 #include "TGeoMedium.h"
27 #include "TGeoManager.h"
28 #include "KVIonRangeTable.h"
30 #include <KVValueRange.h>
68 fAbsorberVolume =
nullptr;
108 SetAreaDensity(area_density);
138 fPressure = pressure;
153 #if ROOT_VERSION_CODE >= ROOT_VERSION(3,4,0)
200 ::Error(
"KVMaterial::ChangeRangeTable",
"No plugin %s defined for KVIonRangeTable", name);
251 if (sscanf(mat_type,
"nat%s", type) != 1) {
252 if (sscanf(mat_type,
"%d%s", &iso_mass, type) != 2) {
253 strcpy(type, mat_type);
256 if (iso_mass)
SetMass(iso_mass);
259 Warning(
"SetMaterial",
260 "Called for material %s which is unknown in current range table %s. Energy loss & range calculations impossible.",
273 KVMaterial::~KVMaterial()
594 if (!
IsGas())
return;
631 if (!
IsGas())
return 0.0;
659 if (!
IsGas())
return;
707 TVector3 n = norm.Unit();
708 TVector3 d = direction.Unit();
710 Double_t prod = TMath::Abs(n * d);
730 TVector3 n = norm.Unit();
731 TVector3 d = direction.Unit();
733 Double_t prod = TMath::Abs(n * d);
745 cout <<
"KVMaterial: " << GetName() <<
" (" <<
GetType() <<
")" << endl;
747 cout <<
" Pressure " <<
GetPressure() <<
" torr" << endl;
750 cout <<
"-----------------------------------------------" << endl;
751 cout <<
" Z = " <<
GetZ() <<
" atomic mass = " <<
GetMass() << endl;
752 cout <<
" Density = " <<
GetDensity() <<
" g/cm**3" << endl;
753 cout <<
"-----------------------------------------------" << endl;
842 if (Z < 1)
return 0.;
846 return TMath::Max(E_loss, 0.);
879 if (Z < 1)
return 0.;
917 if (Z < 1)
return 0.;
973 if (Z < 1)
return 0.;
975 GetLinearDeltaEFromEResOfIon(
1127 if (Z < 1)
return 0.;
1185 if (Z < 1)
return 0.;
1230 cout <<
"detectparticle in material " <<
GetType() <<
" of thickness "
1235 Double_t Eres = kvp->
GetKE() - el;
1254 #if ROOT_VERSION_CODE >= ROOT_VERSION(3,4,0)
1268 ((
KVMaterial&) obj).SetPressure(GetPressure());
1269 ((
KVMaterial&) obj).SetTemperature(GetTemperature());
1270 ((
KVMaterial&) obj).SetThickness(GetThickness());
1286 if (Z < 1)
return 0.;
1304 if (Z < 1)
return 0.;
1332 if (Z < 1)
return 0.;
1376 if (!gGeoManager)
return nullptr;
1378 if (strcmp(med_name,
"")) {
1379 TGeoMedium* gmed = gGeoManager->GetMedium(med_name);
1380 if (gmed)
return gmed;
1381 else if (!strcmp(med_name,
"Vacuum")) {
1383 TGeoMaterial* gmat =
new TGeoMaterial(
"Vacuum", 0, 0, 0);
1384 gmat->SetTitle(
"Vacuum");
1385 gmed =
new TGeoMedium(
"Vacuum", 0, gmat);
1386 gmed->SetTitle(
"Vacuum");
1401 else medName = GetName();
1403 TGeoMedium* gmed = gGeoManager->GetMedium(medName);
1405 if (gmed)
return gmed;
1407 TGeoMaterial* gmat = gGeoManager->GetMaterial(medName);
1414 gmat->SetTransparency(0);
1415 gmat->SetName(medName);
1416 gmat->SetTitle(GetName());
1420 static Int_t numed = 1;
1421 gmed =
new TGeoMedium(medName, numed, gmat);
1444 auto g =
new TGraph;
1446 for (
int i = 0; i < npts; ++i) {
Base class for KaliVeda framework.
virtual const Char_t * GetType() const
virtual void SetType(const Char_t *str)
virtual void Copy(TObject &) const
Make a copy of this object.
Abstract base class for calculation of range & energy loss of charged particles in matter.
virtual Bool_t IsMaterialGas(const Char_t *)
Return kTRUE if material is gaseous.
virtual Double_t GetLinearEIncFromDeltaEOfIon(const Char_t *mat, Int_t Z, Int_t A, Double_t DeltaE, Double_t e, enum SolType type=kEmax, Double_t isoAmat=0., Double_t T=-1., Double_t P=-1.)
virtual const Char_t * GetMaterialName(const Char_t *)
Return name of material of given type or name if it is in range tables.
virtual Double_t GetAtomicMass(const Char_t *)
Returns atomic mass of a material in the range tables.
virtual Double_t GetRangeOfIon(const Char_t *mat, Int_t Z, Int_t A, Double_t E, Double_t Amat=0., Double_t T=-1., Double_t P=-1.)
virtual Double_t GetEResOfIon(const Char_t *mat, Int_t Z, Int_t A, Double_t E, Double_t r, Double_t Amat=0., Double_t T=-1., Double_t P=-1.)
static KVIonRangeTable * GetRangeTable(const Char_t *name)
Generates an instance of the KVIonRangeTable plugin class corresponding to given name.
virtual TGeoMaterial * GetTGeoMaterial(const Char_t *material)
Create and return pointer to TGeoMaterial/Mixture corresponding to material.
virtual Double_t GetZ(const Char_t *)
Returns atomic number of a material in the range tables.
virtual Double_t GetEmaxValid(const Char_t *material, Int_t Z, Int_t A)
virtual Double_t GetLinearPunchThroughEnergy(const Char_t *mat, Int_t Z, Int_t A, Double_t e, Double_t isoAmat=0., Double_t T=-1., Double_t P=-1.)
virtual Bool_t IsMaterialKnown(const Char_t *)
Return kTRUE if material is in range tables.
virtual Double_t GetLinearDeltaEOfIon(const Char_t *mat, Int_t Z, Int_t A, Double_t E, Double_t d, Double_t Amat=0., Double_t T=-1., Double_t P=-1.)
virtual void SetTemperatureAndPressure(const Char_t *, Double_t temperature, Double_t pressure)
virtual Double_t GetDensity(const Char_t *)
Returns density (g/cm**3) of a material in the range tables.
virtual Double_t GetLinearRangeOfIon(const Char_t *mat, Int_t Z, Int_t A, Double_t E, Double_t Amat=0., Double_t T=-1., Double_t P=-1.)
Description of physical materials used to construct detectors & targets; interface to range tables.
virtual Double_t GetPressure() const
virtual void SetPressure(Double_t)
virtual void Copy(TObject &obj) const
Make a copy of this material object.
virtual void SetTemperature(Double_t)
Double_t GetEffectiveAreaDensity(TVector3 &norm, TVector3 &direction)
virtual void SetThickness(Double_t thick)
virtual Double_t GetThickness() const
Double_t GetDensity() const
Double_t fThick
area density of absorber in g/cm**2
virtual TGeoMedium * GetGeoMedium(const Char_t *="")
static KVIonRangeTable * GetRangeTable()
virtual Double_t GetEnergyLoss() const
virtual void Print(Option_t *option="") const
Show information on this material.
Int_t fAmasr
isotopic mass of element
Double_t GetEmaxValid(Int_t Z, Int_t A)
virtual Double_t GetIncidentEnergy(Int_t Z, Int_t A, Double_t delta_e=-1.0, enum SolType type=kEmax)
Double_t fELoss
total of energy lost by all particles traversing absorber
virtual Double_t GetEIncOfMaxDeltaE(Int_t Z, Int_t A)
virtual Double_t GetPunchThroughEnergy(Int_t Z, Int_t A)
virtual Double_t GetEResFromDeltaE(Int_t Z, Int_t A, Double_t dE=-1.0, enum SolType type=kEmax)
virtual Double_t GetMaxDeltaE(Int_t Z, Int_t A)
static KVIonRangeTable * ChangeRangeTable(const Char_t *name)
void SetAreaDensity(Double_t dens)
Double_t GetAreaDensity() const
virtual Double_t GetParticleEIncFromERes(KVNucleus *, TVector3 *norm=nullptr)
Double_t fTemp
gas temperature in degrees celsius
virtual TGraph * GetGraphOfDeltaEVsE(const KVNucleus &nuc, Int_t npts, Double_t Emin, Double_t Emax)
Double_t fPressure
gas pressure in torr
virtual void DetectParticle(KVNucleus *, TVector3 *norm=nullptr)
virtual Double_t GetTemperature() const
virtual Double_t GetIncidentEnergyFromERes(Int_t Z, Int_t A, Double_t Eres)
virtual void SetMaterial(const Char_t *type)
virtual Double_t GetDeltaEFromERes(Int_t Z, Int_t A, Double_t Eres)
static KVIonRangeTable * fIonRangeTable
pointer to class used to calculate charged particle ranges & energy losses
virtual Double_t GetERes(Int_t Z, Int_t A, Double_t Einc)
virtual Double_t GetELostByParticle(KVNucleus *, TVector3 *norm=nullptr)
virtual Double_t GetDeltaE(Int_t Z, Int_t A, Double_t Einc)
virtual void Clear(Option_t *opt="")
Reset absorber - set stored energy lost by particles in absorber to zero.
virtual Double_t GetRange(Int_t Z, Int_t A, Double_t Einc)
Bool_t IsIsotopic() const
Double_t GetEffectiveThickness(TVector3 &norm, TVector3 &direction)
virtual Double_t GetLinearRange(Int_t Z, Int_t A, Double_t Einc)
virtual KVMaterial * GetActiveLayer() const
Description of properties and kinematics of atomic nuclei.
Int_t GetZ() const
Return the number of proton / atomic number.
TVector3 * GetPInitial() const
TVector3 GetMomentum() const
void SetKE(Double_t ecin)
void SetE0(TVector3 *e=0)
Range of values specified by minimum, maximum.
ValueType ValueIofN(Int_t i, Int_t n) const