Ignore:
Timestamp:
05/21/03 12:21:58 (21 years ago)
Author:
wittek
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHBlindPixels.cc

    r2112 r2128  
     1
    12/* ======================================================================== *\
    23!
     
    3233#include <TCanvas.h>
    3334
     35#include "MMcEvt.hxx"
    3436#include "MBlindPixels.h"
     37#include "MPedestalCam.h"
     38#include "MParList.h"
     39#include "MBinning.h"
     40
     41#include "MLog.h"
     42#include "MLogManip.h"
    3543
    3644ClassImp(MHBlindPixels);
     
    4149//
    4250MHBlindPixels::MHBlindPixels(const char *name, const char *title)
    43     : fHist(fName, fTitle, 577, -.5, 577-.5)
    4451{
    4552    fName  = name  ? name  : "MHBlindPixels";
    46     fTitle = title ? title : "Histogram for Blind Pixels";
     53    fTitle = title ? title : "Histogram for Blind Pixels vs. Theta";
    4754
    4855    //  - we initialize the histogram
    49     //  - we have to give diferent names for the diferent histograms because
     56    //  - we have to give different names for the different histograms because
    5057    //    root don't allow us to have diferent histograms with the same name
    5158
    52     fHist.SetName("1D-BlindPixels");
    53     fHist.SetTitle(fTitle);
     59    fBlindId.SetName("2D-IdBlindPixels");
     60    fBlindId.SetTitle("2D-IdBlindPixels");
     61    fBlindId.SetDirectory(NULL);
     62    fBlindId.SetXTitle("\\Theta [\\circ]");
     63    fBlindId.SetYTitle("pixel Id");
    5464
    55     fHist.SetDirectory(NULL);
     65    fBlindN.SetName("2D-NBlindPixels");
     66    fBlindN.SetTitle("2D-NBlindPixels");
     67    fBlindN.SetDirectory(NULL);
     68    fBlindN.SetXTitle("\\Theta [\\circ]");
     69    fBlindN.SetYTitle("number of blind pixels");
     70}
    5671
    57     fHist.SetXTitle("Id");
    58     fHist.SetYTitle("Counts");
     72// --------------------------------------------------------------------------
     73//
     74// Set the binnings and prepare the filling of the histogram
     75//
     76Bool_t MHBlindPixels::SetupFill(const MParList *plist)
     77{
     78    fMcEvt = (MMcEvt*)plist->FindObject("MMcEvt");
     79    if (!fMcEvt)
     80    {
     81        *fLog << err << "MMcEvt not found... aborting." << endl;
     82        return kFALSE;
     83    }
     84
     85    fPed = (MPedestalCam*)plist->FindObject("MPedestalCam");
     86    if (!fPed)
     87    {
     88        *fLog << err << "MPedestalCam not found... aborting." << endl;
     89        return kFALSE;
     90    }
     91
     92
     93    // Get Theta Binning
     94    MBinning* binstheta  = (MBinning*)plist->FindObject("BinningTheta", "MBinning");
     95    if (!binstheta)
     96    {
     97        *fLog << err << "Object 'BinningTheta' [MBinning] not found... aborting" << endl;
     98        return kFALSE;
     99    }
     100
     101    // Get binning for pixel number
     102    const UInt_t npix1 = fPed->GetSize()+1;
     103
     104    MBinning binspix("BinningPixel");
     105    binspix.SetEdges(npix1, -0.5, npix1-0.5);
     106
     107    // Set binnings in histograms
     108    SetBinning(&fBlindId, binstheta, &binspix);
     109    SetBinning(&fBlindN,  binstheta, &binspix);
     110
     111    return kTRUE;
    59112}
    60113
     
    68121    pad->SetBorderMode(0);
    69122
    70     fHist.Draw(option);
     123    pad->Divide(2,2);
     124
     125    TH1D *h;
     126
     127    pad->cd(1);
     128    fBlindId.Draw(option);
     129
     130    pad->cd(2);
     131    fBlindN.Draw(option);
     132
     133    pad->cd(3);
     134    gPad->SetBorderMode(0);
     135    h = ((TH2*)&fBlindId)->ProjectionY("ProjY-pixId", -1, 9999, "");
     136    h->SetDirectory(NULL);
     137    h->SetTitle("Distribution of blind pixel Id");
     138    h->SetXTitle("Id of blind pixel");
     139    h->SetYTitle("No. of events");
     140    h->Draw(option);
     141    h->SetBit(kCanDelete);
     142
     143    pad->cd(4);
     144    gPad->SetBorderMode(0);
     145    h = ((TH2*)&fBlindN)->ProjectionY("ProjY-pixN", -1, 9999, "");
     146    h->SetDirectory(NULL);
     147    h->SetTitle("Distribution of no.of blind pixels");
     148    h->SetXTitle("No. of blind pixels");
     149    h->SetYTitle("No. of events");
     150    h->Draw(option);
     151    h->SetBit(kCanDelete);
    71152
    72153    pad->Modified();
     
    79160        return kFALSE;
    80161
     162    Double_t theta = fMcEvt->GetTelescopeTheta()*kRad2Deg;
    81163    const MBlindPixels &bp = *(MBlindPixels*)par;
    82164
    83165    // FIXME: Slow.
    84     for (int i=0; i<577; i++)
     166    const UInt_t npix = fPed->GetSize();
     167
     168    UInt_t nb = 0;
     169    for (UInt_t i=0; i<npix; i++)
     170    {
    85171        if (bp.IsBlind(i))
    86             fHist.Fill(i, w);
     172        {
     173          fBlindId.Fill(theta, i, w);
     174          nb++;
     175        }   
     176    }
     177    fBlindN.Fill(theta, nb, w);
    87178
    88179    return kTRUE;
    89180}
     181
     182
     183
     184
     185
     186
     187
     188
     189
     190
     191
     192
Note: See TracChangeset for help on using the changeset viewer.