]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpSubZone.cxx
Adding comment lines to class description needed for Root documentation,
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSubZone.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 // $MpId: AliMpSubZone.cxx,v 1.8 2006/05/24 13:58:46 ivana Exp $
18 // Category: sector
19
20 //-----------------------------------------------------------------------------
21 // Class AliMpSubZone
22 // ------------------
23 // Class describing a zone segment composed of the 
24 // line segments with the same motif type.
25 // Included in AliRoot: 2003/05/02
26 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
27 //-----------------------------------------------------------------------------
28
29 #include "AliMpSubZone.h"
30 #include "AliMpVRowSegment.h"
31 #include "AliMpVMotif.h"
32
33 #include "AliLog.h"
34
35 #include <Riostream.h>
36
37 /// \cond CLASSIMP
38 ClassImp(AliMpSubZone)
39 /// \endcond
40
41 //_____________________________________________________________________________
42 AliMpSubZone::AliMpSubZone(AliMpVMotif* motif) 
43   : TObject(),
44     fMotif(motif),
45     fSegments()
46 {
47 /// Standard constructor
48 }
49
50 //_____________________________________________________________________________
51 AliMpSubZone::AliMpSubZone() 
52   : TObject(),
53     fMotif(0),
54     fSegments()
55 {
56 /// Default constructor
57 }
58
59 //_____________________________________________________________________________
60 AliMpSubZone::~AliMpSubZone() 
61 {
62 /// Destructor 
63 }
64
65 //
66 // public methods
67 //
68
69 //_____________________________________________________________________________
70 void AliMpSubZone::AddRowSegment(AliMpVRowSegment* rowSegment)
71 {
72 /// Add row segment.
73
74 #ifdef WITH_STL
75   fSegments.push_back(rowSegment);
76 #endif
77
78 #ifdef WITH_ROOT
79   fSegments.Add(rowSegment);
80 #endif
81
82
83
84 //_____________________________________________________________________________
85 void AliMpSubZone::Print(const char* /*option*/) const
86 {
87 /// Print motif position Ids for all row segments.
88  
89   for (Int_t i=0; i<GetNofRowSegments(); i++) {
90     AliMpVRowSegment* rowSegment = GetRowSegment(i);
91     
92     cout << rowSegment->GetNofMotifs() << " ";
93
94     for (Int_t j=0; j<rowSegment->GetNofMotifs(); j++)
95       cout << rowSegment->GetMotifPositionId(j) << " ";
96     
97     cout << endl;    
98   }    
99 }
100   
101 //_____________________________________________________________________________
102 Int_t AliMpSubZone::GetNofRowSegments() const 
103 {
104 /// Return number of row segments.
105
106 #ifdef WITH_STL
107   return fSegments.size();
108 #endif
109
110 #ifdef WITH_ROOT
111   return fSegments.GetSize();
112 #endif
113 }  
114
115 //_____________________________________________________________________________
116 AliMpVRowSegment* AliMpSubZone::GetRowSegment(Int_t i) const 
117 {
118 /// Return i-th row segment.
119
120   if (i<0 || i>=GetNofRowSegments()) {
121     AliErrorStream() << "Index outside range" << endl;
122     return 0;
123   }
124   
125 #ifdef WITH_STL
126   return fSegments[i];  
127 #endif
128
129 #ifdef WITH_ROOT
130   return (AliMpVRowSegment*)fSegments.At(i);  
131 #endif
132 }
133
134 //_____________________________________________________________________________
135 AliMpVMotif*  AliMpSubZone:: GetMotif() const
136 {
137 /// Return the motif.
138
139   return fMotif;
140 }