]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGeometryStore.cxx
- Revised comments and adapted them for Doxygen
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryStore.cxx
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 // $Id$
17 //
18 // Class AliMUONGeometryStore
19 // -------------------------------------
20 // The class contains the array of the detection elements,
21 // which are sorted using the AliMUONVGeometryDEIndexing class.
22 // The class provides fast access to detection element via DetElemId.
23 //
24 // Author: Ivana Hrivnacova, IPN Orsay
25
26 #include <Riostream.h>
27 #include <TGeoMatrix.h>
28
29 #include "AliLog.h"
30
31 #include "AliMUONGeometryStore.h"
32
33 const Int_t AliMUONGeometryStore::fgkInitSize = 100;
34 const Int_t AliMUONGeometryStore::fgkCoefficient = 100;
35
36 /// \cond CLASSIMP
37 ClassImp(AliMUONGeometryStore)
38 /// \endcond
39
40 //
41 // static methods
42 //
43
44 //______________________________________________________________________________
45 Int_t AliMUONGeometryStore::GetModuleId(Int_t detElemId)
46 {
47 /// Get module Id from detection element Id
48
49   return detElemId/fgkCoefficient - 1;
50 }  
51
52 //
53 // Constructor/destructor
54 //
55
56 //______________________________________________________________________________
57 AliMUONGeometryStore::AliMUONGeometryStore(Bool_t isOwner)
58  : TObject(),
59    fObjects(fgkInitSize)
60
61 /// Standard constructor
62   
63   fObjects.SetOwner(isOwner);
64   for (Int_t i=0; i<fgkInitSize; i++) fObjects[i] = 0;
65 }
66
67 //______________________________________________________________________________
68 AliMUONGeometryStore::AliMUONGeometryStore()
69  : TObject(),
70    fObjects()
71 {
72 /// Default constructor
73 }
74
75 //______________________________________________________________________________
76 AliMUONGeometryStore::~AliMUONGeometryStore() 
77 {
78 /// Destructor
79
80 }
81
82 //
83 // private methods
84 //
85
86 //______________________________________________________________________________
87 Int_t AliMUONGeometryStore::GetDEIndex(Int_t detElemId) const
88 {
89 /// Return the index of detector element specified by detElemId
90
91   return detElemId - detElemId/fgkCoefficient*fgkCoefficient;
92  }  
93
94 //
95 // public methods
96 //
97
98 //______________________________________________________________________________
99 void AliMUONGeometryStore::Add(Int_t objectId, TObject* object)
100 {
101 /// Add detection element in the array
102 /// if detection element with the same Id is not yet present. 
103  
104   // Expand array if the init size has been reached
105   Int_t index = GetDEIndex(objectId);
106   while ( index >= fObjects.GetSize() ) {
107     Int_t size = fObjects.GetSize();
108     fObjects.Expand(size + fgkInitSize);
109     for (Int_t i=size; i<fObjects.GetSize(); i++) fObjects[i] = 0;
110   }  
111
112   // Add to the map  
113   if ( !Get(objectId, false) )
114     fObjects.AddAt(object, index);
115   else 
116     AliWarning(Form("The detection element %d is already present", objectId));  
117 }                     
118
119 //______________________________________________________________________________
120 TObject* 
121 AliMUONGeometryStore::Get(Int_t objectId, Bool_t warn) const
122 {
123 /// Return the object for the specified detector element Id
124
125   Int_t index = GetDEIndex(objectId);
126   
127   if ( index >= 0 && index < fObjects.GetEntriesFast() )
128     return (TObject*) fObjects.At(index);
129   else {
130     if (warn) AliWarning(Form("Index %d out of limits", index));
131     return 0;  
132   }  
133 }  
134
135 //______________________________________________________________________________
136 Int_t  AliMUONGeometryStore::GetNofEntries() const
137 {
138 /// Return number of entries.
139 /// \todo Add check if the array is already filled
140
141   return fObjects.GetEntriesFast();
142 }  
143  
144
145 //______________________________________________________________________________
146 TObject* 
147 AliMUONGeometryStore::GetEntry(Int_t index) const
148 {
149 /// Return entry at specified index.
150 /// \todo Add check if the array is already filled
151   
152   return (TObject*) fObjects.At(index);
153 }