Index: /fact/tools/rootmacros/PulseTemplates/Sample.C
===================================================================
--- /fact/tools/rootmacros/PulseTemplates/Sample.C	(revision 14943)
+++ /fact/tools/rootmacros/PulseTemplates/Sample.C	(revision 14944)
@@ -41,4 +41,5 @@
     mMaxNumber      = 0;
     mSampleSize     = 0;
+    mVerbosityLvl   = 0;
     mSeed           = 4357;
 }
@@ -199,17 +200,17 @@
     int nbins = inputHisto->GetXaxis()->GetNbins();
 
+    if (mVerbosityLvl > 1) cout << "nbins: " << nbins << endl;
     //we need to get the binning
 
     //entries of TH1
-    vector<float>    entries;
+    vector<double>    entries;
 
     //quantity of entries in bin
     int quantity    = 0;
-    float value       = 0;
+    double value       = 0;
     for (int i=0;i<nbins;i++)
     {
         value       = inputHisto->GetBinLowEdge(i);
         quantity    = inputHisto->GetBinContent(i);
-//        cout << value << "(" << quantity << ") ";
         for (int j = 0; j < quantity; j++)
         {
@@ -220,4 +221,6 @@
     //get size of sample to be bootstrapped
     int sampleSize = entries.size();
+
+    if (mVerbosityLvl > 1) cout << "sampleSize: " << sampleSize << endl;
 
     //Vector with positions in original sample
@@ -256,5 +259,5 @@
 {
     if (size == 0){
-        cout << "Bootstrapping: size of vector = 0; nothing to do" << endl;
+        if (mVerbosityLvl > 1) cout << "Bootstrapping: size of vector = 0; nothing to do" << endl;
         return;
     }
Index: /fact/tools/rootmacros/PulseTemplates/Sample.h
===================================================================
--- /fact/tools/rootmacros/PulseTemplates/Sample.h	(revision 14943)
+++ /fact/tools/rootmacros/PulseTemplates/Sample.h	(revision 14944)
@@ -106,4 +106,5 @@
     int             mSeed;
     TRandom3        mRandom;
+    int             mVerbosityLvl;
 
 };
