/usr/include/root/TMVA/Interval.h is in libroot-tmva-dev 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | // @(#)root/tmva $Id$
// Author: Peter Speckmayer
/**********************************************************************************
* Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
* Package: TMVA *
* Class : Interval *
* Web : http://tmva.sourceforge.net *
* *
* Description: *
* Generic range definition (used, eg, in genetic algorithm) *
* *
* Authors (alphabetical): *
* Peter Speckmayer <speckmay@mail.cern.ch> - CERN, Switzerland *
* *
* Copyright (c) 2005: *
* CERN, Switzerland *
* MPI-K Heidelberg, Germany *
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted according to the terms listed in LICENSE *
* (http://tmva.sourceforge.net/LICENSE) *
**********************************************************************************/
#ifndef ROOT_TMVA_Interval
#define ROOT_TMVA_Interval
//////////////////////////////////////////////////////////////////////////////
// //
// Interval //
// //
// Interval definition, continuous and discrete //
// //
// Interval(min,max) : a continous interval [min,max] //
// Interval(min,max,n): a "discrete interval" [min,max], i.e the n numbers: //
// min, min+step, min+2*step,...., min+(n-1)*step, min+n*step=max //
// e.g.: Interval(1,5,5)=1,2,3,4,5 //
// Interval(.5,1.,6)= .5, .6., .7, .8, .9, 1.0 //
// //
// Note: **bin** counting starts from ZERO unlike in ROOT histograms //
// //
// Example: Interval(.5,1.,6) //
// //
// [ min max ] //
// ------------------------------------------------------------ //
// | | | | | | //
// .5 .6 .7 .8 .9 1.0 //
// //
// bin 0 1 2 3 4 5 //
// //
// //
//////////////////////////////////////////////////////////////////////////////
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TRandom3;
namespace TMVA {
class MsgLogger;
class Interval {
public:
Interval( Double_t min, Double_t max, Int_t nbins = 0 );
Interval( const Interval& other );
virtual ~Interval();
// accessors
// accessors
virtual Double_t GetMin() const { return fMin; }
virtual Double_t GetMax() const { return fMax; }
virtual Double_t GetWidth() const;
virtual Int_t GetNbins() const { return fNbins; }
virtual Double_t GetMean() const;
virtual Double_t GetRndm( TRandom3& ) const;
virtual Double_t GetElement( Int_t position ) const;
virtual Double_t GetStepSize(Int_t iBin=0) const;
void SetMax( Double_t m ) { fMax = m; }
void SetMin( Double_t m ) { fMin = m; }
virtual void Print( std::ostream& os ) const;
protected:
Double_t fMin, fMax; // the constraints of the Interval
Int_t fNbins; // when >0 : number of bins (discrete interval); when ==0 continuous interval
private:
static MsgLogger* fgLogger; // message logger
MsgLogger& Log() const { return *fgLogger; }
ClassDef(Interval,0) // Interval definition, continous and discrete
};
} // namespace TMVA
#endif
|