Ignore:
Timestamp:
03/22/01 12:24:47 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgui
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.h

    r695 r698  
    7373    }
    7474
    75   ClassDef(MCamDisplay, 1) // Display the magic camera
     75  ClassDef(MCamDisplay, 0) // Display the magic camera
    7676};
    7777
  • trunk/MagicSoft/Mars/mgui/MCamNeighbor.h

    r653 r698  
    2020  void Print(Option_t *opt=NULL) ;
    2121
    22   ClassDef(MCamNeighbor, 1) // Conatins the neighbors in the magic camera
     22  ClassDef(MCamNeighbor, 0) // Conatins the neighbors in the magic camera
    2323} ;
    2424
  • trunk/MagicSoft/Mars/mgui/MGDataCheckMain.cc

    r571 r698  
    252252  if ( strcmp ( fInputFile, "\n") == 0 )
    253253    {
    254       return ( kFALSE ) ;
     254      return kFALSE ;
    255255    }
    256256 
    257   return (kTRUE) ;
     257  return kTRUE ;
    258258}
    259259
  • trunk/MagicSoft/Mars/mgui/MGDataCheckMain.h

    r669 r698  
    8686  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    8787
    88   ClassDef(MGDataCheckMain, 1)
     88  ClassDef(MGDataCheckMain, 0)
    8989
    9090} ;
  • trunk/MagicSoft/Mars/mgui/MGEventDispMain.h

    r587 r698  
    9797  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    9898
    99   ClassDef(MGEventDispMain, 1)
     99  ClassDef(MGEventDispMain, 0)
    100100
    101101} ;
  • trunk/MagicSoft/Mars/mgui/MGMarsMain.h

    r466 r698  
    5858  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    5959
    60   ClassDef(MGMarsMain, 1)
     60  ClassDef(MGMarsMain, 0)
    6161} ;
    6262
  • trunk/MagicSoft/Mars/mgui/MGMonteCarloMain.h

    r571 r698  
    8181  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    8282
    83   ClassDef(MGMonteCarloMain, 1)
     83  ClassDef(MGMonteCarloMain, 0)
    8484
    8585} ;
  • trunk/MagicSoft/Mars/mgui/MGPrototyp.h

    r609 r698  
    9393  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    9494
    95   ClassDef(MGPrototyp, 1)
     95  ClassDef(MGPrototyp, 0)
    9696
    9797} ;
  • trunk/MagicSoft/Mars/mgui/MGeomCamCT1.cc

    r695 r698  
    3434    // it was punt into a root/C++ context by Harald Kornmayer and Thomas Bretz
    3535   
    36     const Float_t pixdiameter = 21 ;    // units are cm
     36    const Float_t diameter = 21 ;    // units are mm
     37    const Float_t kS32  = sqrt(3)/2;
    3738
    3839    //
    3940    //  add the first pixel to the list
    4041    //
    41     (*this)[0].Set(0, 0, pixdiameter);
    42     //fPixels->Add( new MGeomPix( ) ;
    43 
    44     const Float_t kS32  = sqrt(3)/2;
    45     const Float_t kPI23 = kPI*2/3;
    46 
    4742    Int_t pixnum = 1;
    4843
    49     for (Int_t ringcounter=1; ringcounter<7; ringcounter++) {
    50         //
    51         // calc. numofpix in ring number i first
    52         //
    53         const Int_t numpixthisring = ringcounter*6;
     44    (*this)[pixnum++].Set(0, 0, diameter);
    5445
     46    for (Int_t ring=1; ring<7; ring++)
     47    {
    5548        //
    5649        // calc. coords for this ring counting from the
    5750        // starting number to the ending number
    5851        //
    59         for (Int_t ipix = 0; ipix < numpixthisring; ipix++) {
     52        for (int i=0; i<ring; i++)
     53            (*this)[pixnum++].Set((-ring+i*0.5)*diameter,
     54                                  i*kS32*diameter,
     55                                  diameter);
    6056
    61             Float_t ang     = 60.0/ringcounter * ipix;
    62             Float_t fracang = ang - 60*(int)floor(ang/60);
     57        for (int i=0; i<ring; i++)
     58            (*this)[pixnum++].Set((-ring*0.5+i)*diameter,
     59                                  ring*kS32 * diameter,
     60                                  diameter);
    6361
    64             ang     /= kRad2Deg;
    65             fracang /= kRad2Deg;
     62        for (int i=0; i<ring; i++)
     63            (*this)[pixnum++].Set((ring+i)*0.5*diameter,
     64                                  (ring-i)*kS32*diameter,
     65                                  diameter);
    6666
    67             Float_t rad  = pixdiameter * ringcounter;
    68                     rad *= sin(kPI23-fracang) * kS32;
     67        for (int i=0; i<ring; i++)
     68            (*this)[pixnum++].Set((ring-0.5*i)*diameter,
     69                                  -i*kS32*diameter,
     70                                  diameter);
    6971
    70             //
    71             //   fill the Data into the array
    72             //
     72        for (int i=0; i<ring; i++)
     73            (*this)[pixnum++].Set((ring*0.5-i)*diameter,
     74                                  -ring*kS32 * diameter,
     75                                  diameter);
    7376
    74             (*this)[pixnum++].Set(rad * cos(ang),
    75                                   rad * sin(ang),
    76                                   pixdiameter);
    77             // fPixels->Add( new MGeomPix( ) ;
    78         }
     77        for (int i=0; i<ring; i++)
     78            (*this)[pixnum++].Set((-ring-i)*0.5*diameter,
     79                                  (-ring+i)*kS32*diameter,
     80                                  diameter);
    7981    }
    8082}
  • trunk/MagicSoft/Mars/mgui/MHexagon.cc

    r653 r698  
    9292}
    9393
    94 
    95 void MHexagon::Draw(Option_t *option )
    96 {
    97   //   Draw this ellipse with its current attributes
    98   AppendPad(option) ;
    99 }
    100 
    101 void MHexagon::DrawHexagon( Float_t x, Float_t y, Float_t d )
     94void MHexagon::DrawHexagon( Float_t x, Float_t y, Float_t d )
    10295{
    10396  //   Draw this ellipse with new coordinate
  • trunk/MagicSoft/Mars/mgui/MHexagon.h

    r665 r698  
    4343
    4444  virtual Int_t  DistancetoPrimitive(Int_t px, Int_t py ) ;
    45   virtual void   Draw( Option_t *Option="") ;
    4645  virtual void   DrawHexagon( Float_t x, Float_t y, Float_t d ) ;
    4746 
     
    5352  virtual void   Print(Option_t *Option="") ;
    5453
    55   ClassDef ( MHexagon, 1 )    //  a hexagon for MAGIC
     54  ClassDef ( MHexagon, 0 )    //  a hexagon for MAGIC
    5655
    5756} ;
Note: See TracChangeset for help on using the changeset viewer.