]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALJetFinderAlgoUA1Unit.cxx
Using AliLog (F.Carminati)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderAlgoUA1Unit.cxx
CommitLineData
f7d5860b 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
ee6b678f 17/* $Id$ */
f7d5860b 18
19//_________________________________________________________________________
20// Unit used by UA1 algorithm
44f59d68 21// --
f7d5860b 22//*-- Author: Sarah Blyth (LBL/UCT)
44f59d68 23// --
f7d5860b 24
25
26#include "AliEMCALJetFinderAlgoUA1Unit.h"
27
28
29ClassImp(AliEMCALJetFinderAlgoUA1Unit)
30
31AliEMCALJetFinderAlgoUA1Unit::AliEMCALJetFinderAlgoUA1Unit()
44f59d68 32{
33 // Default constructor
f7d5860b 34 fUnitEnergy = 0.0;
35 fUnitEta = 0.0;
36 fUnitPhi = 0.0;
37 fUnitID = 0;
38 fUnitFlag = kOutJet;
39 }
40
41AliEMCALJetFinderAlgoUA1Unit::~AliEMCALJetFinderAlgoUA1Unit()
42{
43
44}
45
17323043 46Bool_t AliEMCALJetFinderAlgoUA1Unit::operator>(AliEMCALJetFinderAlgoUA1Unit unit) const
f7d5860b 47{
5ebdd6c3 48 // Greater than operator used by sort
f7d5860b 49 if( fUnitEnergy > unit.GetUnitEnergy())
50 return kTRUE;
51 else
52 return kFALSE;
53}
54
17323043 55Bool_t AliEMCALJetFinderAlgoUA1Unit::operator<( AliEMCALJetFinderAlgoUA1Unit unit) const
f7d5860b 56{
5ebdd6c3 57 // Less than operator used by sort
f7d5860b 58 if( fUnitEnergy < unit.GetUnitEnergy())
59 return kTRUE;
60 else
61 return kFALSE;
62}
63
17323043 64Bool_t AliEMCALJetFinderAlgoUA1Unit::operator==( AliEMCALJetFinderAlgoUA1Unit unit) const
f7d5860b 65 {
5ebdd6c3 66 // equality operator used by sort
f7d5860b 67 if( fUnitEnergy == unit.GetUnitEnergy())
68 return kTRUE;
69 else
70 return kFALSE;
71 }