]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONDigit.cxx
Connect only MUON branches when reading the event to speed up digitisation.
[u/mrichter/AliRoot.git] / MUON / AliMUONDigit.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 /*
17 $Log$
18 Revision 1.5  2001/10/31 16:40:07  jchudoba
19 change preprocessor constant to C++ constant
20
21 Revision 1.4  2001/10/18 14:44:09  jchudoba
22 Define constant MAXTRACKS for maximum number of tracks associated with 1 digit
23
24 Revision 1.3  2001/01/26 21:26:58  morsch
25 All data members private. Access functions provided.
26
27 Revision 1.2  2000/06/15 07:58:48  morsch
28 Code from MUON-dev joined
29
30 Revision 1.1.2.1  2000/06/09 22:03:22  morsch
31 Was before in DataStructures.cxx
32
33 */
34
35 #include "AliMUONDigit.h"
36
37 #include <iostream.h>
38
39 ClassImp(AliMUONDigit)
40 //_____________________________________________________________________________
41 AliMUONDigit::AliMUONDigit(Int_t *digits)
42 {
43   //
44   // Creates a MUON digit object to be updated
45   //
46     fPadX        = digits[0];
47     fPadY        = digits[1];
48     fCathode     = digits[2];
49     fSignal      = digits[3];
50     fPhysics     = digits[4];
51     fHit         = digits[5];
52
53 }
54 //_____________________________________________________________________________
55 AliMUONDigit::AliMUONDigit(Int_t *tracks, Int_t *charges, Int_t *digits)
56 {
57     //
58     // Creates a MUON digit object
59     //
60     fPadX        = digits[0];
61     fPadY        = digits[1];
62     fCathode     = digits[2];
63     fSignal      = digits[3];
64     fPhysics     = digits[4];
65     fHit         = digits[5];
66
67     for(Int_t i=0; i<kMAXTRACKS; i++) {
68         fTcharges[i]  = charges[i];
69         fTracks[i]    = tracks[i];
70     }
71 }
72
73 AliMUONDigit::~AliMUONDigit()
74 {
75     // Destructor 
76 }
77
78 ////////////////////////////////////////////////////////////////////////
79 void AliMUONDigit::Print(Option_t *option) const 
80 {
81   // print
82   cout<<"fPadX, fPadY, fCathode, fSignal, fPhysics, fHit: \n";
83   cout<<"   "<<fPadX<<" "<<fPadY<<" "<<fCathode<<" "
84       <<fSignal<<" "<<fPhysics<<" "<<fHit<<endl;
85 }
86
87 ////////////////////////////////////////////////////////////////////////