Ignore:
Timestamp:
06/30/08 10:37:00 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHCamera.h

    r8484 r8988  
    11/* ======================================================================== *\
    2 !  $Name: not supported by cvs2svn $:$Id: MHCamera.h,v 1.64 2007-05-10 12:14:54 tbretz Exp $
     2!  $Name: not supported by cvs2svn $:$Id: MHCamera.h,v 1.65 2008-06-30 09:36:38 tbretz Exp $
    33\* ======================================================================== */
    44#ifndef MARS_MHCamera
     
    284284    UInt_t   GetNumPixels() const;
    285285
    286     TH1D    *Projection(const char *name="_py", const Int_t nbins=50) const
    287       {
     286    TH1D    *Projection(const char *name="_proj", const Int_t nbins=50) const
     287    {
    288288        return ProjectionS(TArrayI(), TArrayI(), name,nbins);
    289       }
    290     TH1D    *ProjectionS(Int_t sector, Int_t aidx, const char *name="_py", const Int_t nbins=50) const
     289    }
     290    TH1D    *ProjectionS(Int_t sector, Int_t aidx, const char *name="_proj", const Int_t nbins=50) const
    291291    {
    292292        return ProjectionS(TArrayI(1, &sector), TArrayI(1, &aidx), name, nbins);
    293293    }
    294     TH1D    *ProjectionS(const TArrayI &sector, const TArrayI &aidx, const char *name="_py", const Int_t nbins=50) const;
     294    TH1D    *ProjectionS(const TArrayI &sector, const TArrayI &aidx, const char *name="_proj", const Int_t nbins=50) const;
    295295
    296296    TProfile *RadialProfile(const char *name="_rad", Int_t nbins=25) const { return  RadialProfileS(TArrayI(), TArrayI(), name, nbins);}
     
    301301    TProfile *RadialProfileS(const TArrayI &sector, const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
    302302
    303     TProfile *AzimuthProfile(const char *name="_azi", Int_t nbins=25) const { return  AzimuthProfileA(TArrayI(), name, nbins);  }
    304     TProfile *AzimuthProfile(Int_t aidx, const char *name="_rad", const Int_t nbins=25) const
    305       {
     303    TProfile *AzimuthProfile(const char *name="_az", Int_t nbins=25) const { return  AzimuthProfileA(TArrayI(), name, nbins);  }
     304    TProfile *AzimuthProfile(Int_t aidx, const char *name="_az", const Int_t nbins=25) const
     305    {
    306306        return AzimuthProfileA(TArrayI(1, &aidx), name, nbins);
    307       }
    308     TProfile *AzimuthProfileA(const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
     307    }
     308    TProfile *AzimuthProfileA(const TArrayI &aidx, const char *name="_az", const Int_t nbins=25) const;
    309309   
    310310    void CamDraw(TCanvas &c, const Int_t x, const Int_t y,
Note: See TracChangeset for help on using the changeset viewer.