]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpPadIteratorPtr.cxx
Applying ManuMask in motif position test
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPadIteratorPtr.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: AliMpPadIteratorPtr.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $
18 // Category: basic
19 //
20 // Class AliMpPadIteratorPtr
21 // --------------------------
22 // Pointer to the virtual pad iterator;
23 // enables to allocate the virtual pad iterator on stack.
24 // Usage:
25 // MVIndexed* myIndexed = MyIndexed()
26 // MVIterator& it = *AliMpPadIteratorPtr(myIndexed->CreateIterator());
27 //
28 // Included in AliRoot: 2003/05/02
29 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
30
31 #include "AliMpPadIteratorPtr.h"
32 #include "AliMpVPadIterator.h"
33
34 /// \cond CLASSIMP
35 ClassImp(AliMpPadIteratorPtr)
36 /// \endcond
37
38 //_____________________________________________________________________________
39 AliMpPadIteratorPtr::AliMpPadIteratorPtr(AliMpVPadIterator* it)
40   : fIterator(it)
41 {
42 /// Standard constructor
43 }
44
45 //_____________________________________________________________________________
46 AliMpPadIteratorPtr::~AliMpPadIteratorPtr() 
47 {
48 /// Destructor
49
50   delete fIterator;
51 }