1 #include "KVDetector.h"
7 #include "KVTelescope.h"
9 #include "KVCalibrator.h"
10 #include "TPluginManager.h"
11 #include "TObjString.h"
14 #include "TGeoVolume.h"
15 #include "TGeoManager.h"
16 #include "TGeoMatrix.h"
20 #include "KVCalibratedSignal.h"
21 #include "KVDetectorSignalExpression.h"
22 #include "KVZDependentCalibratedSignal.h"
24 #include <TGeoPhysicalNode.h>
45 fActiveLayer =
nullptr;
46 fIDTelescopes =
new KVList(kFALSE);
47 fIDTelescopes->SetCleanup(kTRUE);
48 fIDTelAlign =
new KVList(kFALSE);
49 fIDTelAlign->SetCleanup(kTRUE);
51 fIdentP = fUnidentP = 0;
53 fDepthInTelescope = 0.;
54 fELossF = fEResF = fRangeF = 0;
56 fAlignedDetectors[0] = 0;
57 fAlignedDetectors[1] = 0;
61 fParentStrucList.SetCleanup();
63 fNode.SetDetector(
this);
65 fDetSignals.SetOwner();
68 fDetSignals.ReplaceObjects();
81 SetName(Form(
"Det_%d", fDetCounter));
112 #if ROOT_VERSION_CODE >= ROOT_VERSION(3,4,0)
120 #if ROOT_VERSION_CODE >= ROOT_VERSION(3,4,0)
136 TIter next(fAbsorbers);
142 Int_t in_actif = fAbsorbers->IndexOf(fActiveLayer);
151 KVDetector::~KVDetector()
216 if (kvp->
GetKE() <= 0.)
227 std::vector<Double_t> thickness;
253 Double_t epart = kvp->
GetEnergy() - eloss;
287 std::vector<Double_t> thickness;
352 clone_part.
SetKE(Einc);
369 if (!strcmp(opt,
"data")) {
370 cout << GetName() <<
" -- ";
376 std::cout << sig->GetName() <<
"=" << sig->
GetValue() <<
" | ";
383 std::cout << sig->GetName() <<
"=" << sig->
GetValue() <<
" | ";
388 cout <<
"(Belongs to an unidentified particle)";
391 else if (!strcmp(opt,
"all")) {
395 cout << option << ClassName() <<
" : " << ((
KVDetector*)
this)->
402 cout <<
" ### ACTIVE LAYER ### " << endl;
403 cout << option << option;
406 cout <<
" #################### " << endl;
409 cout << option <<
" --- Detected particles:" << endl;
413 cout << option <<
" --- Detector belongs to the following Identification Telescopes:" << endl;
419 cout << ClassName() <<
": " << ((
KVDetector*)
this)->
500 if (!cal)
return kFALSE;
505 Error(
"AddCalibrator",
"Detector:%s has no signal %s, required as input by calibrator %s to provide output %s",
514 cal->SetName(Form(
"%s_%s", GetName(), cal->
GetType()));
517 Warning(
"AddCalibrator",
"%s : output signal not defined for calibrator %s. No output signal created.",
606 if (strncmp(opt,
"N", 1)) {
656 Error(
"GetAbsorber",
"No absorber list");
660 Error(
"GetAbsorber",
"Nothing in absorber list");
664 Error(
"GetAbsorber",
"i=%d but only %d absorbers in list", i,
772 while ((idt = next())) {
841 Int_t z = nuc->
GetZ();
842 Int_t a = nuc->
GetA();
851 if (!transmission) solution =
kEmin;
866 if (transmission && ERES > 0.) {
883 return (EINC - ERES);
926 ELOSS = (ELOSS < 0. ?
GetEnergy() : ELOSS);
927 if (ELOSS <= 0)
return 0;
934 UInt_t last_positive_difference_z = 1;
936 if (mass_formula > -1)
941 while (zmax > zmin + 1) {
947 if (difference < 0.0) {
950 z += (UInt_t)((zmax - z) / 2 + 0.5);
956 last_positive_difference_z = z;
957 z -= (UInt_t)((z - zmin) / 2 + 0.5);
961 if (difference < 0) {
964 z = last_positive_difference_z;
997 e = mat->
GetERes(par[0], par[1], e);
1003 return mat->
GetDeltaE(par[0], par[1], e);
1030 Double_t Einc = x[0];
1031 Int_t Z = (Int_t)par[0];
1032 Int_t A = (Int_t)par[1];
1033 Double_t
range = 0.;
1036 if (!mat)
return 0.;
1046 range += this_range;
1048 Einc = mat->
GetERes(Z, A, Einc);
1052 range += this_range;
1090 Double_t eres = mat->
GetERes(par[0], par[1], e);
1132 TPluginHandler* ph =
nullptr;
1134 if (!nom.Contains(
".") && !(ph =
LoadPlugin(
"KVDetector", name)))
return nullptr;
1135 if (nom.Contains(
".")) {
1140 if (!(ph =
LoadPlugin(
"KVDetector", name))) {
1141 if (!(ph =
LoadPlugin(
"KVDetector", det_type))) {
1148 return (
KVDetector*) ph->ExecPlugin(1, thickness);
1179 Double_t dist_to_back = depth + layer_thickness;
1227 if (!gGeoManager)
return NULL;
1237 Double_t vertices[16];
1240 TGeoVolume* mother_vol = 0;
1245 mother_vol = gGeoManager->MakeVolumeAssembly(Form(
"%s_DET", GetName()));
1251 Double_t depth_in_det = 0.;
1258 if (thick == 0.0)
continue;
1260 for (
int i = 0; i < 8; i++) {
1261 vertices[2 * i] = coords[i].X();
1262 vertices[2 * i + 1] = coords[i].Y();
1264 Double_t dz = thick / 2.;
1267 else vol_name = Form(
"%s_%d_%s", GetName(), no_abs, abs->
GetType());
1269 gGeoManager->MakeArb8(vol_name.Data(), med, dz, vertices);
1270 vol->SetLineColor(med->GetMaterial()->GetDefaultColor());
1273 Double_t trans_z = -tot_thick_det / 2. + depth_in_det + dz;
1274 TGeoTranslation* tr =
new TGeoTranslation(0., 0., trans_z);
1275 mother_vol->AddNode(vol, 1, tr);
1281 depth_in_det += thick;
1318 if (!gGeoManager)
return;
1326 TGeoRotation rot1, rot2;
1327 rot2.SetAngles(phi + 90., theta, 0.);
1328 rot1.SetAngles(-90., 0., 0.);
1331 Double_t dist_telescope = (fTelescope ? fTelescope->
GetDistance() : 0.);
1334 Double_t trans_z = dist;
1336 TGeoTranslation tran(0, 0, trans_z);
1337 TGeoHMatrix h = rot2 * tran * rot1;
1338 TGeoHMatrix* ph =
new TGeoHMatrix(h);
1341 gGeoManager->GetTopVolume()->AddNode(vol, 1, ph);
1349 void printvec(
const TVector3& v)
1351 cout <<
"(" << v.X() <<
"," << v.Y() <<
"," << v.Z() <<
")";
1379 auto printvec = [](
const TVector3 & v) {
1380 cout <<
"(" << v.X() <<
"," << v.Y() <<
"," << v.Z() <<
")";
1386 cout <<
"DETECTOR COORDINATES (in cm):" << endl;
1387 cout <<
"=================================" << endl;
1389 printvec(coords[0]);
1392 printvec(coords[1]);
1395 printvec(coords[2]);
1398 printvec(coords[3]);
1401 cout <<
"DETECTOR DIMENSIONS (in cm):" << endl;
1402 cout <<
"================================" << endl;
1403 Double_t c = (coords[0] - coords[1]).Mag();
1404 Double_t b = (coords[1] - coords[2]).Mag();
1405 Double_t d = (coords[2] - coords[3]).Mag();
1406 Double_t a = (coords[0] - coords[3]).Mag();
1407 cout <<
" AB = " << c << endl;
1408 cout <<
" BC = " << b << endl;
1409 cout <<
" CD = " << d << endl;
1410 cout <<
" AD = " << a << endl;
1412 cout <<
"DETECTOR SURFACE AREA = ";
1413 Double_t surf = pow((a + b), 2.0) * (a - b + 2.0 * c) * (b - a + 2.0 * c);
1414 surf = sqrt(surf) / 400.0;
1415 cout << surf <<
" cm2" << endl;
1435 0., 1.e+04, 2,
"KVDetector",
"EResDet");
1436 fEResF->SetNpx(gEnv->GetValue(
"KVDetector.ResidualEnergy.Npx", 20));
1438 fEResF->SetParameters((Double_t)Z, (Double_t)A);
1440 fEResF->SetTitle(Form(
"Residual energy [MeV] after detector %s for Z=%d A=%d", GetName(), Z, A));
1460 0., 1.e+04, 2,
"KVDetector",
"RangeDet");
1461 fRangeF->SetNpx(gEnv->GetValue(
"KVDetector.Range.Npx", 20));
1463 fRangeF->SetParameters((Double_t)Z, (Double_t)A);
1465 fRangeF->SetTitle(Form(
"Range [cm] in detector %s for Z=%d A=%d", GetName(), Z, A));
1485 0., 1.e+04, 2,
"KVDetector",
"ELossActive");
1486 fELossF->SetNpx(gEnv->GetValue(
"KVDetector.EnergyLoss.Npx", 20));
1488 fELossF->SetParameters((Double_t)Z, (Double_t)A);
1490 fELossF->SetTitle(Form(
"Energy loss [MeV] in detector %s for Z=%d A=%d", GetName(), Z, A));
1556 return Einc -
GetERes(Z, A, Einc);
1572 if (Einc <= 0.)
return 0.;
1576 if (eres < 0.) eres = 0.;
1629 if (Z < 1)
return 0.;
1640 dE->GetRange(e1, e2);
1684 if (Z < 1 || Eres <= 0.)
return 0.;
1686 if (Einc <= 0.)
return 0.;
1707 if (Z < 1 || Eres <= 0.)
return 0.;
1729 Double_t maxmin = -1.;
1780 TEnv fEnvFile(envrc);
1782 KVString layers(fEnvFile.GetValue(
"Layer",
""));
1784 while (!layers.
End()) {
1786 KVString mat = fEnvFile.GetValue(Form(
"%s.Material", layer.Data()),
"");
1787 KVString tS = fEnvFile.GetValue(Form(
"%s.Thickness", layer.Data()),
"");
1788 KVString pS = fEnvFile.GetValue(Form(
"%s.Pressure", layer.Data()),
"");
1789 KVString dS = fEnvFile.GetValue(Form(
"%s.AreaDensity", layer.Data()),
"");
1790 Double_t thick, dens, press;
1791 thick = dens = press = 0.;
1793 if (pS !=
"" && tS !=
"") {
1794 press = (Double_t)gROOT->ProcessLineFast(Form(
"%s*1.e+12", pS.Data()));
1796 thick = (Double_t)gROOT->ProcessLineFast(Form(
"%s*1.e+12", tS.Data()));
1798 M =
new KVMaterial(mat.Data(), thick, press);
1800 else if (tS !=
"") {
1801 thick = (Double_t)gROOT->ProcessLineFast(Form(
"%s*1.e+12", tS.Data()));
1805 else if (dS !=
"") {
1806 dens = (Double_t)gROOT->ProcessLineFast(Form(
"%s*1.e+12", dS.Data()));
1812 if (fEnvFile.GetValue(Form(
"%s.Active", layer.Data()), kFALSE))
SetActiveLayer(M);
1857 if (!
GetGroup() || direction > 1)
return 0x0;
1869 if (!
GetGroup() || direction > 1)
return;
1935 TGraph* punch =
new TGraph(92);
1936 punch->SetName(Form(
"KVDetpunchthrough_%s_mass%d", GetName(), massform));
1937 punch->SetTitle(Form(
"Simple Punch-through %s (MeV) (mass formula %d)", GetName(), massform));
1940 for (
int Z = 1; Z <= 92; Z++) {
1960 TGraph* punch =
new TGraph(92);
1961 punch->SetName(Form(
"KVDetpunchthroughEsurA_%s_mass%d", GetName(), massform));
1962 punch->SetTitle(Form(
"Simple Punch-through %s (AMeV) (mass formula %d)", GetName(), massform));
1965 for (
int Z = 1; Z <= 92; Z++) {
2020 if (strcmp(name,
"")) {
2094 TGeoPhysicalNode* pn = (TGeoPhysicalNode*)gGeoManager->GetListOfPhysicalNodes()->FindObject(
GetNode()->
GetFullPathToNode());
2096 TGeoBBox* shape = (TGeoBBox*)pn->GetShape();
2097 TGeoShape* newshape =
nullptr;
2099 if (shape->IsA() == TGeoBBox::Class()) {
2100 newshape =
new TGeoBBox(shape->GetDX(), shape->GetDY(), 0.5 * thick);
2102 else if (shape->IsA() == TGeoTube::Class()) {
2103 TGeoTube* oldtube =
static_cast<TGeoTube*
>(shape);
2104 newshape =
new TGeoTube(oldtube->GetRmin(), oldtube->GetRmax(), 0.5 * thick);
2107 Error(
"SetThickness",
"No implementation for %s (%s)", shape->IsA()->GetName(), GetName());
2110 pn->Align(
nullptr, newshape);
2112 gGeoManager->RefreshPhysicalNodes(kFALSE);
2136 for (
int iabs = 0; iabs < nabs; ++iabs) {
2173 return (ds !=
nullptr);
virtual const Char_t * GetType() const
virtual Bool_t IsType(const Char_t *typ) const
virtual void SetType(const Char_t *str)
Double_t ProtectedGetX(const TF1 *func, Double_t val, int &status, Double_t xmin=0.0, Double_t xmax=0.0) const
static TPluginHandler * LoadPlugin(const Char_t *base, const Char_t *uri="0")
Output signal from detector obtained by calibration.
virtual Bool_t IsAvailableFor(const KVNameValueList ¶ms) const
Base class for all detector calibrations.
TString GetInputSignalType() const
void SetDetector(KVDetector *d)
TString GetOutputSignalType() const
Signal output from a mathematical combination of other signals.
Base class for output signal data produced by a detector.
virtual Bool_t IsExpression() const
virtual Bool_t IsRaw() const
virtual Bool_t GetValueNeedsExtraParameters() const
virtual Double_t GetValue(const KVNameValueList ¶ms="") const
Base class for detector geometry description.
static KVDetector * MakeDetector(const Char_t *name, Float_t thick)
virtual const Char_t * GetArrayName()
virtual Bool_t IsOK() const
void SetMatrix(const TGeoHMatrix *m)
KVPosition fEWPosition
position of entrance window i.e. first volume in detector geometry
virtual Double_t GetMaxDeltaE(Int_t Z, Int_t A)
KVUniqueNameList fParentStrucList
list of geometry structures which directly contain this detector
Int_t GetNumberOfAbsorberLayers() const
virtual void GetVerticesInOwnFrame(TVector3 *, Double_t, Double_t)
virtual Double_t GetERes(Int_t Z, Int_t A, Double_t Einc)
virtual Double_t GetELostByParticle(KVNucleus *, TVector3 *norm=0)
Double_t ELossActive(Double_t *x, Double_t *par)
TList * GetTelescopesForIdentification()
virtual void AddIDTelescope(TObject *idt)
Add ID telescope to list of telescopes to which detector belongs.
KVList * GetAlignedIDTelescopes()
KVList * fCalibrators
list of associated calibrator objects
KVGeoStrucElement * GetParentStructure(const Char_t *type, const Char_t *name="") const
KVGroup * GetGroup() const
void AddDetectorSignal(KVDetectorSignal *ds)
virtual Double_t GetRange(Int_t Z, Int_t A, Double_t Einc)
virtual void SetEnergyLoss(Double_t e) const
Bool_t ReplaceCalibrator(const Char_t *type, KVCalibrator *cal, const KVNameValueList &opts="")
virtual Double_t GetTotalDeltaE(Int_t Z, Int_t A, Double_t Einc)
virtual TGeoVolume * GetGeoVolume()
virtual Double_t GetEnergy() const
virtual TF1 * GetEResFunction(Int_t Z, Int_t A)
virtual Double_t GetEIncOfMaxDeltaE(Int_t Z, Int_t A)
virtual TGraph * DrawPunchThroughEsurAVsZ(Int_t massform=KVNucleus::kBetaMass)
void AddAbsorber(KVMaterial *)
virtual Double_t GetEnergyLoss() const
virtual Double_t GetEResAfterDetector() const
KVList * fIDTelescopes
list of ID telescopes to which detector belongs
void SetShape(TGeoBBox *s)
void AddParentStructure(KVGeoStrucElement *elem)
Double_t GetTheta() const
Double_t fEResforEinc
used by GetIncidentEnergy & GetCorrectedEnergy
KVList * fIDTelAlign
list of ID telescopes made of this detector and all aligned detectors placed in front of it
virtual Int_t FindZmin(Double_t ELOSS=-1., Char_t mass_formula=-1)
TF1 * fELossF
parametric function dE in active layer vs. incident energy
TList * fAlignedDetectors[2]
stores lists of aligned detectors in both directions
virtual void Clear(Option_t *opt="")
const KVPosition & GetEntranceWindow() const
KVMaterial * GetAbsorber(Int_t i) const
Returns pointer to the i-th absorber in the detector (i=0 first absorber, i=1 second,...
void remove_signal_for_calibrator(KVCalibrator *K)
KVList * fAbsorbers
list of absorbers making up the detector
TList * fIDTele4Ident
list of ID telescopes used for particle ID
TF1 * fEResF
parametric function Eres residual energy after all layers of detector
virtual Double_t GetSmallestEmaxValid(Int_t Z, Int_t A)
Bool_t HasSameStructureAs(const KVDetector *) const
void SetThickness(Double_t thick)
virtual void AddToGeometry()
virtual Double_t GetIncidentEnergy(Int_t Z, Int_t A, Double_t delta_e=-1.0, enum SolType type=kEmax)
virtual KVDetectorSignal * GetDetectorSignal(const KVString &type) const
virtual void ReadDefinitionFromFile(const Char_t *)
Double_t GetTotalThicknessInCM()
Bool_t IsCalibrated() const
virtual TF1 * GetELossFunction(Int_t Z, Int_t A)
void SetActiveLayer(KVMaterial *actif)
Bool_t BelongsToUnidentifiedParticle() const
Double_t RangeDet(Double_t *x, Double_t *par)
KVMaterial * GetActiveLayer() const
virtual void RemoveCalibrators()
virtual Double_t GetEntranceWindowSurfaceArea()
Return surface area of first layer of detector in cm2.
virtual TGraph * DrawPunchThroughEnergyVsZ(Int_t massform=KVNucleus::kBetaMass)
KVUniqueNameList fDetSignals
list of signals associated with detector
virtual Double_t GetPunchThroughEnergy(Int_t Z, Int_t A)
Int_t fUnidentP
temporary counters, determine state of identified/unidentified particle flags
TF1 * fRangeF
parametric function range of particles in detector
Bool_t AddDetectorSignalExpression(const KVString &type, const KVString &_expr)
virtual Double_t GetParticleEIncFromERes(KVNucleus *, TVector3 *norm=0)
virtual void SetEResAfterDetector(Double_t e)
void SetActiveLayerMatrix(const TGeoHMatrix *)
Set ROOT geometry global matrix transformation to coordinate frame of active layer volume.
virtual void Copy(TObject &obj) const
void RemoveParentStructure(KVGeoStrucElement *elem)
const KVSeqCollection & GetListOfDetectorSignals() const
KVList * fParticles
list of particles hitting detector in an event
virtual TList * GetAlignedDetectors(UInt_t direction=1)
KVGeoDetectorNode * GetNode()
void SetEntranceWindowMatrix(const TGeoHMatrix *)
Set ROOT geometry global matrix transformation to coordinate frame of entrance window.
virtual Double_t GetDeltaE(Int_t Z, Int_t A, Double_t Einc)
Double_t EResDet(Double_t *x, Double_t *par)
Double_t fDepthInTelescope
used to store depth of detector in parent telescope
KVMaterial * fActiveLayer
The active absorber in the detector.
void AddHit(KVNucleus *part)
KVCalibrator * GetCalibrator(const Char_t *name, const Char_t *type) const
virtual Double_t GetIncidentEnergyFromERes(Int_t Z, Int_t A, Double_t Eres)
Int_t fIdentP
temporary counters, determine state of identified/unidentified particle flags
virtual Double_t GetDeltaEFromERes(Int_t Z, Int_t A, Double_t Eres)
void SetEntranceWindowShape(TGeoBBox *)
Set ROOT geometry shape of entrance window.
void ResetAlignedDetectors(UInt_t direction=1)
virtual void DetectParticle(KVNucleus *, TVector3 *norm=0)
void SetActiveLayerShape(TGeoBBox *)
Set ROOT geometry shape of active layer volume.
void SetAnalysed(Bool_t b=kTRUE)
TString fFName
dynamically generated full name of detector
virtual void Print(Option_t *option="") const
Bool_t fSingleLayer
=kTRUE if detector has a single absorber layer
virtual Double_t GetLinearRange(Int_t Z, Int_t A, Double_t Einc)
virtual TF1 * GetRangeFunction(Int_t Z, Int_t A)
virtual Double_t GetCorrectedEnergy(KVNucleus *, Double_t e=-1., Bool_t transmission=kTRUE)
void init()
default initialisations
Bool_t AddCalibrator(KVCalibrator *cal, const KVNameValueList &opts="")
Double_t fTotThickness
used to store value calculated by GetTotalThicknessInCM
TGeoBBox * GetShape() const
virtual void SetMaterial(const Char_t *type)
Path taken by particles through multidetector geometry.
const KVSeqCollection * GetIDTelescopes() const
const Char_t * GetFullPathToNode() const
Base class describing elements of array geometry.
Group of detectors which can be treated independently of all others in array.
const KVGeoDNTrajectory * GetTrajectoryForReconstruction(const KVGeoDNTrajectory *t, const KVGeoDetectorNode *n) const
Extended TList class which owns its objects by default.
Description of physical materials used to construct detectors & targets; interface to range tables.
virtual void SetThickness(Double_t thick)
virtual Double_t GetThickness() const
virtual TGeoMedium * GetGeoMedium(const Char_t *="")
virtual void Print(Option_t *option="") const
Show information on this material.
Double_t GetEmaxValid(Int_t Z, Int_t A)
virtual Double_t GetPunchThroughEnergy(Int_t Z, Int_t A)
virtual Double_t GetParticleEIncFromERes(KVNucleus *, TVector3 *norm=nullptr)
virtual void SetMaterial(const Char_t *type)
virtual Double_t GetERes(Int_t Z, Int_t A, Double_t Einc)
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.
Double_t GetEffectiveThickness(TVector3 &norm, TVector3 &direction)
virtual Double_t GetLinearRange(Int_t Z, Int_t A, Double_t Einc)
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
void SetValue(const Char_t *name, value_type value)
const Char_t * GetStringValue(const Char_t *name) const
Bool_t HasParameter(const Char_t *name) const
Description of properties and kinematics of atomic nuclei.
void SetZ(Int_t z, Char_t mt=-1)
void SetMassFormula(UChar_t mt)
Int_t GetZ() const
Return the number of proton / atomic number.
TVector3 * GetPInitial() const
TVector3 GetMomentum() const
KVNameValueList * GetParameters() const
Double_t GetEnergy() const
void SetKE(Double_t ecin)
void SetMomentum(const TVector3 *v)
void SetE0(TVector3 *e=0)
void SetEnergy(Double_t e)
Base class used for handling geometry in a multidetector array.
virtual void SetShape(TGeoBBox *)
Bool_t ROOTGeo() const
Returns kTRUE if ROOT geometry is used, kFALSE if not.
void GetCornerCoordinates(TVector3 *, Double_t=0)
virtual Double_t GetDistance(void) const
virtual Double_t GetSurfaceArea(int npoints=100000) const
virtual void SetMatrix(const TGeoHMatrix *)
virtual TGeoBBox * GetShape() const
void GetCornerCoordinatesInOwnFrame(TVector3 *, Double_t=0)
KaliVeda extensions to ROOT collection classes.
virtual void Clear(Option_t *option="")
virtual Int_t GetSize() const
virtual TObject * At(Int_t idx) const
KVSeqCollection * GetSubListWithType(const Char_t *retvalue) const
virtual TObject * FindObjectByType(const Char_t *) const
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from list.
virtual void Delete(Option_t *option="")
virtual TObject * FindObject(const char *name) const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
void RBegin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const
KVString RNext(Bool_t strip_whitespace=kFALSE) const
Associates two detectors placed one behind the other.
Int_t GetDetectorRank(KVDetector *kvd)
returns position (1=front, 2=next, etc.) detector in the telescope structure
Double_t GetDepthInCM(Int_t ndet) const
virtual void Add(TObject *obj)
Handle several calibrations valid for different Z ranges.