]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONErrorCounter.cxx
Do not use TMath::AreEqual which does not exist yet in Root 5.24
[u/mrichter/AliRoot.git] / MUON / AliMUONErrorCounter.cxx
CommitLineData
5253c153 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// $Id$
17
18#include "AliMUONErrorCounter.h"
19
20#include <Riostream.h>
21
22//-----------------------------------------------------------------------------
23/// \class AliMUONErrorCounter
24///
25/// add
26///
27///
28/// \author Alberto Baldisseri, JL Charvet (05/05/2009)
29//-----------------------------------------------------------------------------
30
640fd52f 31/// \cond CLASSIMP
32ClassImp(AliMUONErrorCounter)
33/// \endcond
34
5253c153 35//______________________________________________________________________________
36AliMUONErrorCounter::AliMUONErrorCounter(Int_t bp, Int_t manu, Int_t ev)
a54854fc 37: TNamed(Form("bp%dmanu%d",bp,manu),""),
38fBusPatch(bp),
39fManuId(manu),
40fEvents(ev)
5253c153 41{
a54854fc 42 SetUniqueID( ( manu << 16 ) | bp );
5253c153 43}
44
45//______________________________________________________________________________
46Int_t AliMUONErrorCounter::Compare(const TObject* obj) const
47{
48 /// Compare function
49 Int_t patch1, patch2, manu1, manu2;
50 patch1 = fBusPatch;
51 manu1 = fManuId;
52 patch2 = ((AliMUONErrorCounter*)obj)->BusPatch();
53 manu2 = ((AliMUONErrorCounter*)obj)->ManuId();
54
55 if (patch1 == patch2)
56 {
57 if (manu1 == manu2)
58 {
59 return 0;
60 }
61 else
62 return (manu1 >= manu2) ? 1 : -1;
63 }
64 else
65 return (patch1 >= patch2) ? 1 : -1;
66}
67
68//______________________________________________________________________________
69void AliMUONErrorCounter::Print(const Option_t* option) const
70{
71 TNamed::Print(option);
72 cout<<"bp "<<fBusPatch<<" events "<<fEvents<<endl;
73}
74
75//______________________________________________________________________________
f3cfa63e 76void AliMUONErrorCounter::PrintUncal(const Option_t* option) const
5253c153 77{
78 TNamed::Print(option);
79 cout<<"bp = "<<fBusPatch<< " manu = " << fManuId << " uncal = "<< fEvents <<endl;
80}