]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTransientDigit.cxx
Mapping test macros (D. Guez, I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / AliMUONTransientDigit.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
18 #include <TObjArray.h>
19 #include <TVector.h>
20
21 #include "AliMUONTransientDigit.h"
22 #include "AliLog.h"
23
24 ClassImp(AliMUONTransientDigit)
25
26 //____________________________________________________________________________
27 AliMUONTransientDigit::AliMUONTransientDigit()
28   : AliMUONDigit()
29 {
30 // Constructor
31
32   fTrackList=0;
33 }
34  
35 //____________________________________________________________________________
36
37   AliMUONTransientDigit::AliMUONTransientDigit(const AliMUONTransientDigit& digit)
38     : AliMUONDigit(digit)
39 {
40 // Protected copy constructor
41
42   AliFatal( "Not implemented.");
43 }
44
45
46 AliMUONTransientDigit::AliMUONTransientDigit(Int_t ich, Int_t *digits): 
47     AliMUONDigit(digits)
48 {
49     //
50     // Creates a MUON digit list object
51     //
52     fChamber     = ich;
53     fTrackList   = new TObjArray(5);   
54     // 5 is arbitrary number, just to decrease default 16
55 }
56
57 ////////////////////////////////////////////////////////////////////////
58 AliMUONTransientDigit::~AliMUONTransientDigit() 
59 {
60   fTrackList->Delete();
61   delete fTrackList;
62 }
63
64 ////////////////////////////////////////////////////////////////////////
65 AliMUONTransientDigit& 
66 AliMUONTransientDigit::operator =(const AliMUONTransientDigit& rhs)
67 {
68 // Protected assignement operator
69
70   if (this == &rhs) return *this;
71
72   AliFatal("Not implemented.");
73     
74   return *this;  
75 }
76
77 ////////////////////////////////////////////////////////////////////////
78 void AliMUONTransientDigit::AddToTrackList(Int_t track, Int_t charge)
79 {
80   TVector *pTrInfo = new TVector(3);
81   TVector &trInfo = *pTrInfo;
82   trInfo(0) = track;
83   trInfo(1) = charge;
84   fTrackList->Add(pTrInfo);
85 }
86
87 ////////////////////////////////////////////////////////////////////////
88 void AliMUONTransientDigit::UpdateTrackList(Int_t track, Int_t charge)
89 {
90   Int_t lastEntry = fTrackList->GetLast();
91   TVector *pVect = static_cast<TVector*>(fTrackList->At(lastEntry));
92   if ( static_cast<Int_t>((*pVect)(0)) == track) {
93     (*pVect)(1) += charge;  // update charge
94   } else {
95     AddToTrackList(track,charge);
96   }
97 }
98
99 ////////////////////////////////////////////////////////////////////////
100 Int_t AliMUONTransientDigit::GetTrack(Int_t i) const
101 {
102   if (i > fTrackList->GetEntriesFast()) return 0;
103   TVector *pVect = static_cast<TVector*>(fTrackList->At(i));
104   return static_cast<Int_t>((*pVect)(0));
105 }
106
107
108 ////////////////////////////////////////////////////////////////////////
109 Int_t AliMUONTransientDigit::GetCharge(Int_t i) const
110 {
111   if (i > fTrackList->GetEntriesFast()) return 0;
112   TVector *pVect = static_cast<TVector*>(fTrackList->At(i));
113   return static_cast<Int_t>((*pVect)(1));
114 }
115