]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpVRowSegment.cxx
Code for MUON Station1 (I.Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpVRowSegment.cxx
1 // $Id$
2 // Category: sector
3 //
4 // Class AliMpVRowSegment
5 // ----------------------
6 // Class describing an interface for a row segment.
7 //
8 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
9
10 #include <TError.h>
11
12 #include "AliMpVRowSegment.h"
13
14 ClassImp(AliMpVRowSegment)
15
16 //_____________________________________________________________________________
17 AliMpVRowSegment::AliMpVRowSegment()
18   : AliMpVIndexed()
19 {
20 // 
21 }
22
23 //_____________________________________________________________________________
24 AliMpVRowSegment::~AliMpVRowSegment() {
25 //  
26 }
27
28 //_____________________________________________________________________________
29 AliMpVPadIterator* AliMpVRowSegment::CreateIterator() const
30 {
31 // Iterator is not yet implemented.
32 // ---
33
34   Fatal("CreateIterator", "Iterator is not yet implemented.");
35   
36   return 0;
37 }  
38
39
40