]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpVRowSegment.cxx
Mapping test macros (D. Guez, I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpVRowSegment.cxx
CommitLineData
5f91c9e8 1// $Id$
2// Category: sector
3//
4// Class AliMpVRowSegment
5// ----------------------
6// Class describing an interface for a row segment.
dbe945cc 7// Included in AliRoot: 2003/05/02
5f91c9e8 8// Authors: David Guez, Ivana Hrivnacova; IPN Orsay
9
10#include <TError.h>
11
12#include "AliMpVRowSegment.h"
13
14ClassImp(AliMpVRowSegment)
15
16//_____________________________________________________________________________
17AliMpVRowSegment::AliMpVRowSegment()
18 : AliMpVIndexed()
19{
20//
21}
22
23//_____________________________________________________________________________
24AliMpVRowSegment::~AliMpVRowSegment() {
25//
26}
27
28//_____________________________________________________________________________
29AliMpVPadIterator* 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