Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
0
Добавлен:
21.04.2026
Размер:
953 б
Скачать
#include <iostream>
#include <math.h>
#include <time.h>
#include "hist.hpp"

using namespace std;

// This function generates basic random
double gamma(){
    return (rand()+0.5)/(RAND_MAX+1.0);
}

// Poison math expectation 4
int main(){
    double lambda = 4.; // math expectation
    srand(time(NULL)); // initialize the random generator
    int num_bin = 20;
    Hist *hist = new Hist(-0.5, num_bin - 0.5, num_bin);
    for( int i=0; i<4000000; i++ ){
// ******************************************************************

// ******************************************************************
        hist->fill(k); // fill histogramm
    }

    for(int i=0; i<hist->get_num_bin(); i++){
        cout << hist->get_bin(i) << "\t";   // get middle of bin boundary
        cout << hist->get_bin_value(i) << "\n"; // get number of counts in the bin
    }
    hist->draw(80);
    delete hist;  // destroy histogramm

}

Соседние файлы в папке Моделирование процессов в физике частиц (7 сем)