]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSDigit.h
Put back the two bellows in front of the absorber.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigit.h
CommitLineData
d15a28e7 1#ifndef ALIPHOSDIGIT_H
2#define ALIPHOSDIGIT_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6ad0bfa0 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
9// PHOS digit: Id
10// energy
11// 3 identifiers for the primary particle(s) at the origine of the digit
12// The digits are made in FinishEvent() by summing all the hits in a single PHOS crystal or PPSD gas cell
13// It would be nice to replace the 3 identifiers by an array, but, because digits are kept in a TClonesQArray,
14// it is not possible to stream such an array... (beyond my understqnding!)
15//
16//*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
d15a28e7 17
18// --- ROOT system ---
19
20#include "TObject.h"
21
22// --- Standard library ---
23
24// --- AliRoot header files ---
25
26#include "AliDigitNew.h"
27
28class AliPHOSDigit : public AliDigitNew {
6c370def 29
30 friend class ostream& operator << ( ostream& , const AliPHOSDigit&) ;
31
88714635 32 public:
33
cf239357 34 AliPHOSDigit() ;
83974468 35 AliPHOSDigit(Int_t primary, Int_t id, Int_t DigEnergy, Int_t index = -1) ;
cf239357 36 AliPHOSDigit(const AliPHOSDigit & digit) ;
88714635 37 virtual ~AliPHOSDigit(){
38 // dtor
39 }
d15a28e7 40
b27d82c8 41 Bool_t operator==(const AliPHOSDigit &rValue) const;
d15a28e7 42 AliPHOSDigit& operator+(AliPHOSDigit const &rValue) ;
6c370def 43
d15a28e7 44 Int_t Compare(TObject * obj) ;
88714635 45 Int_t GetNprimary() const {
46 // returns the number of primaries
47 return fNprimary ; }
26d4b141 48 Int_t GetPrimary(Int_t index) const ;
88714635 49 Bool_t IsSortable() const {
50 // says that AliPHOSDigits are sortable (needed for Sort method
51 return kTRUE ; }
52 void SetAmp(Int_t Amp) {
53 // sets the amplitude data member
54 fAmp=Amp ; }
26d4b141 55
88714635 56 private:
ff4c968a 57
83974468 58 Int_t fPrimary1 ; // first primary (because objects in a TClonesArray bust have constant length)
59 Int_t fPrimary2 ; // second primary (because objects in a TClonesArray bust have constant lengt)
60 Int_t fPrimary3 ; // third primary (because objects in a TClonesArray bust have constant lengt)
ff4c968a 61 Int_t fNprimary ; // Number of primaries
83974468 62
b2a60966 63 ClassDef(AliPHOSDigit,1) // Digit in PHOS
d15a28e7 64
65} ;
66
67#endif // ALIPHOSDIGIT_H