2017-11-02 12:54:10 +01:00
|
|
|
#ifndef Lattice_h
|
|
|
|
#define LAttice_h 1
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include "TMath.h"
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// Create a lattice around the estimated mu, sigma //
|
|
|
|
// //
|
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
|
|
|
Double_t mu = 0.0;
|
|
|
|
Double_t sigma = 0.0;
|
|
|
|
}MuSigma;
|
|
|
|
|
|
|
|
class Lattice{
|
|
|
|
|
|
|
|
public:
|
|
|
|
Lattice();
|
|
|
|
~Lattice();
|
|
|
|
|
2017-11-02 14:13:41 +01:00
|
|
|
void SetNop(Int_t num); //set the width of the lattice
|
|
|
|
void SetPercent(Int_t num); //set the interval of mu, sigma
|
2017-11-02 12:54:10 +01:00
|
|
|
|
2017-11-02 14:13:41 +01:00
|
|
|
void SetLattice(Double_t mu_est, Double_t sigma_est); //set the lattice around mu_est, sigma_est
|
2017-11-02 12:54:10 +01:00
|
|
|
|
|
|
|
MuSigma GetMuSigma(Int_t index);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
Int_t _nop; //number of points in [mu-_percent; mu+_percent]
|
|
|
|
Double_t _percent;
|
|
|
|
|
|
|
|
std::vector<MuSigma> ms_vect;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-11-02 14:13:41 +01:00
|
|
|
/***********************************************************************
|
|
|
|
example in BM1D.cc
|
|
|
|
|
|
|
|
Lattice *myLattice = new Lattice();
|
|
|
|
myLattice->SetPercent(15);
|
|
|
|
myLattice->SetNop(10);
|
|
|
|
myLattice->SetLattice(myAnalyse->GetMu(), myAnalyse->GetSigma());
|
|
|
|
|
|
|
|
************************************************************************/
|
|
|
|
|
2017-11-02 12:54:10 +01:00
|
|
|
#endif
|