1 #include "KVTelescope.h"
2 #include "KVDetector.h"
10 #include "TGeoManager.h"
11 #include "TGeoMatrix.h"
50 KVTelescope::~KVTelescope()
71 if (element->InheritsFrom(KVDetector::Class())) {
72 Int_t ndets = GetSize();
142 TIter next(GetDetectors());
148 nvl->
SetValue(obj->GetName(), TMath::Abs(ebefore));
163 Warning(
"GetDetectorRank",
"Detector does not belong to this telescope!");
167 TIter next(GetDetectors());
203 "Add detectors to telescope before setting depth.");
206 if ((
int) ndet > fNdets) {
208 "Cannot set depth for detector %d in %d-member telescope.",
213 fDepth =
new Float_t[fNdets];
214 fDepth[ndet - 1] = depth;
215 GetDetector(ndet)->SetDistance(GetDistance() + depth *
KVUnits::mm);
228 Error(
"GetDepth",
"Depths have not been set.");
231 if ((
int) ndet > fNdets) {
233 "Cannot get depth for detector %d in %d-member telescope.",
237 return fDepth[ndet - 1];
250 Error(
"GetDepth",
"Depths have not been set.");
254 for (
int ndet = 0; ndet < fNdets; ndet++) {
270 int no_of_dets = GetDetectors()->GetEntries();
271 if (no_of_dets == 1) {
273 return GetDetector(1)->GetGeoVolume();
275 TGeoVolume* mother_vol = gGeoManager->MakeVolumeAssembly(Form(
"%s_TEL", GetName()));
277 Double_t tot_len_tel = GetTotalLengthInCM();
279 TIter next(GetDetectors());
285 TGeoTranslation* tran =
new TGeoTranslation(0., 0., dist);
286 mother_vol->AddNode(det_vol, 1, tran);
299 if (!gGeoManager)
return;
302 TGeoVolume* vol = GetGeoVolume();
305 Double_t theta = GetTheta();
306 Double_t phi = GetPhi();
307 TGeoRotation rot1, rot2;
308 rot2.SetAngles(phi + 90., theta, 0.);
309 rot1.SetAngles(-90., 0., 0.);
310 Double_t tot_len_tel = GetTotalLengthInCM();
312 Double_t dist = GetDistance() + tot_len_tel / 2.;
314 Double_t trans_z = dist;
316 TGeoTranslation tran(0, 0, trans_z);
317 TGeoHMatrix h = rot2 * tran * rot1;
318 TGeoHMatrix* ph =
new TGeoHMatrix(h);
321 gGeoManager->GetTopVolume()->AddNode(vol, 1, ph);
334 int no_of_dets = GetDetectors()->GetEntries();
335 Double_t tot_len_tel = GetDepthInCM(no_of_dets) + GetDetector(no_of_dets)->GetTotalThicknessInCM();
Base class for KaliVeda framework.
Base class for detector geometry description.
KVGeoStrucElement * GetParentStructure(const Char_t *type, const Char_t *name="") const
virtual TGeoVolume * GetGeoVolume()
virtual Double_t GetEnergy() const
Double_t GetTotalThicknessInCM()
KVGeoDetectorNode * GetNode()
virtual Double_t GetDepthInTelescope() const
virtual void DetectParticle(KVNucleus *, TVector3 *norm=0)
void AddInFront(KVDetector *)
void AddBehind(KVDetector *)
virtual void Add(KVBase *)
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
void SetValue(const Char_t *name, value_type value)
Description of properties and kinematics of atomic nuclei.
Double_t GetEnergy() const
KaliVeda extensions to ROOT collection classes.
Associates two detectors placed one behind the other.
virtual TGeoVolume * GetGeoVolume()
Create and return TGeoVolume representing detectors in this telescope.
Double_t GetTotalLengthInCM() const
void SetDepth(UInt_t ndet, Float_t depth)
set the depth of detector number ndet(=1,2,...) in mm.
Int_t GetDetectorRank(KVDetector *kvd)
returns position (1=front, 2=next, etc.) detector in the telescope structure
void ResetDetectors()
Reset Energy losses to be ready for the next event.
void Add(KVBase *element)
Float_t GetDepth() const
get depth of entire telescope in mm (sum of depths of detectors)
virtual void AddToGeometry()
Construct and position a TGeoVolume shape to represent this telescope in the current geometry.
virtual void DetectParticle(KVNucleus *kvp, KVNameValueList *nvl=0)