IAC LeadTunstateCherenkovCrystalTests 2-15

From New IAC Wiki
Revision as of 16:29, 20 February 2015 by Foretony (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

2/17/15

Beam profile measurements using glass plates separated by 40.4 cm

NearBP 021715-9.52.pngRearBP 021715-9.52.png

After calibrating .

200 pxCalRearBP 021715-9.52.png

2/20/15

NearBP 022015-7.35.pngNearBP 022015-7.47.pngRearBP 022015-7.47.png


Root script

The Image2Hist.C program from the ROOT tutorials

//Create a 2-D histogram from an image.
//Author: Olivier Couet

void image2hist()
{
  //   TASImage image("rose512.jpg");
   TASImage image("test.png");
   UInt_t yPixels = image.GetHeight();
   UInt_t xPixels = image.GetWidth();
   UInt_t *argb   = image.GetArgbArray();

   TH2D* BeamShape = new TH2D("BeamShape","BeamShape",xPixels,-1,1,yPixels,-1,1);

   for (int row=0; row<xPixels; ++row) {
      for (int col=0; col<yPixels; ++col) {
         int index = col*xPixels+row;
         float grey = float(argb[index]&0xff)/256;
         BeamShape->SetBinContent(row+1,yPixels-col,grey);
      }
   }

   gStyle->SetPalette(53);
   BeamShape->Draw("colz");
}


IAC_Experiments