]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONSurveyDetElem.cxx
In survey:
[u/mrichter/AliRoot.git] / MUON / AliMUONSurveyDetElem.cxx
CommitLineData
ba8b0266 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15//-----------------------------------------------------------------------------
16/// \class AliMUONSurveyDetElem
17/// Class for the survey processing of the ALICE DiMuon spectrometer
18///
19/// This object provides the methods specific to the detection elements
20///
21/// \author Javier Castillo
22//-----------------------------------------------------------------------------
23
24#include "TGeoMatrix.h"
25
26#include "AliLog.h"
27#include "AliSurveyObj.h"
28
29#include "AliMUONSurveyChamber.h"
30#include "AliMUONSurveyDetElem.h"
31
32/// \cond CLASSIMP
33ClassImp(AliMUONSurveyDetElem)
34/// \endcond
35
36AliMUONSurveyDetElem::AliMUONSurveyDetElem(Int_t lDetElemId)
37 : AliMUONSurveyObj()
38 , fDetElemId(lDetElemId)
39 , fSurveyChamber(0x0)
40{
41/// Constructor with detection element id
42}
43
44AliMUONSurveyDetElem::AliMUONSurveyDetElem(Int_t lDetElemId, AliMUONSurveyChamber *lSurveyChamber)
45 : AliMUONSurveyObj() /// Constructor with mother chamber provided
46 , fDetElemId(lDetElemId)
47 , fSurveyChamber(lSurveyChamber)
48{
49/// Constructor with mother chamber provided
50}
51
52AliMUONSurveyDetElem::~AliMUONSurveyDetElem() {
53 /// Destructor
54}
55
56Int_t AliMUONSurveyDetElem::AddStickerTargets(TObjArray *pArray, TString stBaseName, Int_t lTargetMax) {
57 return AliMUONSurveyObj::AddStickerTargets(pArray, stBaseName, lTargetMax);
58}
59
60Int_t AliMUONSurveyDetElem::AddStickerTargets(TString stBaseName, Int_t lTargetMax) {
f7d36813 61 /// Add a maximum of lTargetMax sticker targets with stBaseName from internal SurveyObj
ba8b0266 62 if (!fSurveyChamber) {
63 AliError("Pointer to mother chamber has not been set!");
64 return 0;
65 }
66 if (!fSurveyChamber->GetSurveyObj() || !fSurveyChamber->GetSurveyObj()->GetData()) {
67 AliError("Survey data is missing!");
68 return 0;
69 }
70 return AddStickerTargets(fSurveyChamber->GetSurveyObj()->GetData(),stBaseName,lTargetMax);
71}
72
73Int_t AliMUONSurveyDetElem::AddGButtonTargets(TObjArray *pArray, TString stBaseName, Int_t lTargetMax) {
74 return AliMUONSurveyObj::AddGButtonTargets(pArray, stBaseName, lTargetMax);
75}
76
77Int_t AliMUONSurveyDetElem::AddGButtonTargets(TString stBaseName, Int_t lTargetMax) {
f7d36813 78 /// Add a maximum of lTargetMax sticker targets with stBaseName from internal SurveyObj
ba8b0266 79 if (!fSurveyChamber) {
80 AliError("Pointer to mother chamber has not been set!");
81 return 0;
82 }
83 if (!fSurveyChamber->GetSurveyObj() || !fSurveyChamber->GetSurveyObj()->GetData()) {
84 AliError("Survey data is missing!");
85 return 0;
86 }
87 return AddGButtonTargets(fSurveyChamber->GetSurveyObj()->GetData(),stBaseName,lTargetMax);
88}
89
90void AliMUONSurveyDetElem::SetLocalTransformation(TGeoCombiTrans *localTrf, Bool_t ownerLocalTrf) {
f7d36813 91 /// Set the geometry transformation of this detection element
ba8b0266 92 AliMUONSurveyObj::SetLocalTransformation(localTrf,ownerLocalTrf);
93 if (!fSurveyChamber) {
94 AliWarning("Pointer to mother chamber has not been set!");
95 AliMUONSurveyObj::SetBaseTransformation(localTrf,ownerLocalTrf);
96 } else {
97 if (fSurveyChamber->GetLocalTrf()){
98 if (fSurveyChamber->GetAlignTrf()){
99 AliMUONSurveyObj::SetBaseTransformation(new TGeoCombiTrans((*(fSurveyChamber->GetLocalTrf()))*(*(fSurveyChamber->GetAlignTrf()))*(*localTrf)),kTRUE);
100 } else {
101 AliWarning("Mother chamber has not been aligned yet!");
102 AliMUONSurveyObj::SetBaseTransformation(new TGeoCombiTrans((*(fSurveyChamber->GetLocalTrf()))*(*localTrf)),kTRUE);
103 }
104 } else {
105 AliWarning("Mother chamber has no local transformation");
106 AliMUONSurveyObj::SetBaseTransformation(localTrf,ownerLocalTrf);
107 }
108 }
109}
110
111void AliMUONSurveyDetElem::PrintLocalTrf() {
112 printf("DetElem%d Th",fDetElemId);
113 AliMUONSurveyObj::PrintLocalTrf();
114}
115
116void AliMUONSurveyDetElem::PrintAlignTrf() {
117 printf("DetElem%d d",fDetElemId);
118 AliMUONSurveyObj::PrintAlignTrf();
119}