Ignore:
Timestamp:
11/04/03 17:08:27 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.cc

    r2463 r2470  
    2424\* ======================================================================== */
    2525
    26 ///////////////////////////////////////////////////////////////////////
     26/////////////////////////////////////////////////////////////////////////////
    2727//
    2828// MGeomCam
     
    3232// interface of how to acccess the geometry information.
    3333//
     34// We use a TObjArray for possible future usage (it is much more flexible
     35// than a TClonesArray so that it can store more types of pixels (eg
     36// fake pixels which are not really existing)
    3437//
    3538// Version 1:
     
    4245//  - added fPixRatioSqrt
    4346//
    44 //
    45 ///////////////////////////////////////////////////////////////////////
     47/////////////////////////////////////////////////////////////////////////////
    4648#include "MGeomCam.h"
    4749
     
    5759using namespace std;
    5860
     61// --------------------------------------------------------------------------
     62//
     63// Default Constructor
     64//
    5965MGeomCam::MGeomCam()
    6066    : fNumPixels(0), fCamDist(0), fConvMm2Deg(0)
     
    6268}
    6369
    64 
    65 
    6670// --------------------------------------------------------------------------
    6771//
     
    8690}
    8791
     92// --------------------------------------------------------------------------
     93//
     94// Returns a reference of the i-th entry (the pixel with the software idx i)
     95// The access is unchecked (for speed reasons!) accesing non existing
     96// entries may crash the program!
     97//
    8898MGeomPix &MGeomCam::operator[](Int_t i)
    8999{
     
    91101}
    92102
     103// --------------------------------------------------------------------------
     104//
     105// Returns a reference of the i-th entry (the pixel with the software idx i)
     106// The access is unchecked (for speed reasons!) accesing non existing
     107// entries may crash the program!
     108//
    93109MGeomPix &MGeomCam::operator[](Int_t i) const
    94110{
     
    208224}
    209225
     226// --------------------------------------------------------------------------
     227//
     228//  Create a clone of this container. This is very easy, because we
     229//  simply have to create a new object of the same type.
     230//
    210231TObject *MGeomCam::Clone(const char *newname) const
    211232{
Note: See TracChangeset for help on using the changeset viewer.