Logo ROOT   6.14/05
Reference Guide
RooInt.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * @(#)root/roofitcore:$Id$
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8  * *
9  * Copyright (c) 2000-2005, Regents of the University of California *
10  * and Stanford University. All rights reserved. *
11  * *
12  * Redistribution and use in source and binary forms, *
13  * with or without modification, are permitted according to the terms *
14  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15  *****************************************************************************/
16 
17 /**
18 \file RooInt.cxx
19 \class RooInt
20 \ingroup Roofitcore
21 
22 RooInt is a minimal implementation of a TObject holding a Int_t
23 value.
24 **/
25 
26 #include "RooFit.h"
27 
28 #include "RooInt.h"
29 #include "RooInt.h"
30 
31 using namespace std;
32 
34 ;
35 
36 
37 
38 ////////////////////////////////////////////////////////////////////////////////
39 /// Facilitate sorting of RooInts in ROOT container classes
40 /// Return -1 or +1 if 'other' is a RooInt with value
41 /// greater or lesser than self. Return zero if other
42 /// object is not a RooInt
43 
44 Int_t RooInt::Compare(const TObject* other) const
45 {
46  const RooInt* otherD = dynamic_cast<const RooInt*>(other) ;
47  if (!otherD) return 0 ;
48  return (_value>otherD->_value) ? 1 : -1 ;
49 }
RooInt is a minimal implementation of a TObject holding a Int_t value.
Definition: RooInt.h:22
int Int_t
Definition: RtypesCore.h:41
STL namespace.
Int_t _value
Definition: RooInt.h:40
#define ClassImp(name)
Definition: Rtypes.h:359
Mother of all ROOT objects.
Definition: TObject.h:37
Int_t Compare(const TObject *other) const
Facilitate sorting of RooInts in ROOT container classes Return -1 or +1 if &#39;other&#39; is a RooInt with v...
Definition: RooInt.cxx:44