]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMFTDigit.cxx
Fixing mem leak
[u/mrichter/AliRoot.git] / MFT / AliMFTDigit.cxx
CommitLineData
820b4d9e 1/**************************************************************************
2 * Copyright(c) 2004-2006, 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//====================================================================================================================================================
17//
18// Digit description for the ALICE Muon Forward Tracker
19//
20// Contact author: antonio.uras@cern.ch
21//
22//====================================================================================================================================================
23
24#include "AliDigit.h"
25#include "AliMFTDigit.h"
26
27ClassImp(AliMFTDigit)
28
29//====================================================================================================================================================
30
31AliMFTDigit::AliMFTDigit():
32 AliDigit(),
33 fNMCTracks(0),
34 fPixelX(-1),
35 fPixelY(-1),
36 fPixelZ(0),
37 fPixelCenterX(0),
38 fPixelCenterY(0),
39 fPixelCenterZ(0),
40 fPixelWidthX(0),
41 fPixelWidthY(0),
42 fPixelWidthZ(0),
43 fPlane(-1),
44 fDetElemID(-1),
45 fEloss(0),
46 fNElectrons(0)
47{
48
49 // default cosntructor
50
51 for (Int_t iTr=0; iTr<fNMaxMCTracks; iTr++) fMCLabel[iTr] = -1;
52
53}
54
55//====================================================================================================================================================