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 |
21 | // |
22 | //*-- Author: Sarah Blyth (LBL/UCT) |
23 | // |
24 | |
25 | |
26 | #include "AliEMCALJetFinderAlgoUA1Unit.h" |
27 | |
28 | |
29 | ClassImp(AliEMCALJetFinderAlgoUA1Unit) |
30 | |
31 | AliEMCALJetFinderAlgoUA1Unit::AliEMCALJetFinderAlgoUA1Unit() |
32 | { |
33 | fUnitEnergy = 0.0; |
34 | fUnitEta = 0.0; |
35 | fUnitPhi = 0.0; |
36 | fUnitID = 0; |
37 | fUnitFlag = kOutJet; |
38 | } |
39 | |
40 | AliEMCALJetFinderAlgoUA1Unit::~AliEMCALJetFinderAlgoUA1Unit() |
41 | { |
42 | |
43 | } |
44 | |
5ebdd6c3 |
45 | const Bool_t AliEMCALJetFinderAlgoUA1Unit::operator>(AliEMCALJetFinderAlgoUA1Unit unit) |
f7d5860b |
46 | { |
5ebdd6c3 |
47 | // Greater than operator used by sort |
f7d5860b |
48 | if( fUnitEnergy > unit.GetUnitEnergy()) |
49 | return kTRUE; |
50 | else |
51 | return kFALSE; |
52 | } |
53 | |
5ebdd6c3 |
54 | const Bool_t AliEMCALJetFinderAlgoUA1Unit::operator<( AliEMCALJetFinderAlgoUA1Unit unit) |
f7d5860b |
55 | { |
5ebdd6c3 |
56 | // Less than operator used by sort |
f7d5860b |
57 | if( fUnitEnergy < unit.GetUnitEnergy()) |
58 | return kTRUE; |
59 | else |
60 | return kFALSE; |
61 | } |
62 | |
5ebdd6c3 |
63 | const Bool_t AliEMCALJetFinderAlgoUA1Unit::operator==( AliEMCALJetFinderAlgoUA1Unit unit) |
f7d5860b |
64 | { |
5ebdd6c3 |
65 | // equality operator used by sort |
f7d5860b |
66 | if( fUnitEnergy == unit.GetUnitEnergy()) |
67 | return kTRUE; |
68 | else |
69 | return kFALSE; |
70 | } |