]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSdigit.cxx
Trigger board object base class
[u/mrichter/AliRoot.git] / ITS / AliITSdigit.cxx
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 /* $Id$ */
17
18 ////////////////////////////////////////////////
19 //  Digits classes for all ITS detectors      //
20 //                                            //
21 //                                            //
22 ////////////////////////////////////////////////
23
24 #include "AliITSdigit.h"
25
26 //______________________________________________________________________
27 ClassImp(AliITSdigit)
28 AliITSdigit::AliITSdigit(const Int_t *digits) {
29   // Creates a real data digit object
30
31   fCoord1       = digits[0];
32   fCoord2       = digits[1];
33   fSignal       = digits[2];
34 }
35 //______________________________________________________________________
36 void AliITSdigit::Print(ostream *os) {
37     //Standard output format for this class
38
39     *os << fCoord1 <<","<< fCoord2 <<","<< fSignal;
40 }
41 //______________________________________________________________________
42 void AliITSdigit::Read(istream *os) {
43     //Standard input for this class
44
45     *os >> fCoord1 >> fCoord2 >> fSignal;
46 }
47 //______________________________________________________________________
48 ostream &operator<<(ostream &os,AliITSdigit &source){
49     // Standard output streaming function.
50
51     source.Print(&os);
52     return os;
53 }
54 //______________________________________________________________________
55 istream &operator>>(istream &os,AliITSdigit &source){
56     // Standard output streaming function.
57
58     source.Read(&os);
59     return os;
60 }
61
62