]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpSubZone.cxx
Fixing a backward compatibility issue
[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   fSegments.Add(rowSegment);
75
76
77
78 //_____________________________________________________________________________
79 void AliMpSubZone::Print(const char* /*option*/) const
80 {
81 /// Print motif position Ids for all row segments.
82  
83   for (Int_t i=0; i<GetNofRowSegments(); i++) {
84     AliMpVRowSegment* rowSegment = GetRowSegment(i);
85     
86     cout << rowSegment->GetNofMotifs() << " ";
87
88     for (Int_t j=0; j<rowSegment->GetNofMotifs(); j++)
89       cout << rowSegment->GetMotifPositionId(j) << " ";
90     
91     cout << endl;    
92   }    
93 }
94   
95 //_____________________________________________________________________________
96 Int_t AliMpSubZone::GetNofRowSegments() const 
97 {
98 /// Return number of row segments.
99
100   return fSegments.GetSize();
101 }  
102
103 //_____________________________________________________________________________
104 AliMpVRowSegment* AliMpSubZone::GetRowSegment(Int_t i) const 
105 {
106 /// Return i-th row segment.
107
108   if (i<0 || i>=GetNofRowSegments()) {
109     AliErrorStream() << "Index outside range" << endl;
110     return 0;
111   }
112   
113   return (AliMpVRowSegment*)fSegments.At(i);  
114 }
115
116 //_____________________________________________________________________________
117 AliMpVMotif*  AliMpSubZone:: GetMotif() const
118 {
119 /// Return the motif.
120
121   return fMotif;
122 }