Hello,
I am trying to plot the histogram based on random number generated from a user defined function. I do not get any output nor any error. I could not figure out where I am doing mistake. I have attached my macros here.
if (points.size() < 2000){
for (int i=0;i<2000;i++){
double x = f1->GetRandom();
points.push_back(x);
}
Can you please explain what these three function does here, points.size and points.push_back ?