Changeset 1954 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/12/03 19:28:25 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1952 r1954  
    6565     - changed the order of the arguments in the constructor
    6666       (name, title to the end)
     67
     68   * manalysis/MMultiDimDistCalc.cc:
     69     - added two const qualifiers
     70     
     71   * mtemp/MObservatory.cc:
     72     - changed Magic1 coordinates to CT1 GPS.
    6773
    6874
  • trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc

    r1947 r1954  
    200200    }
    201201
    202     Double_t dg = fMGammas->CalcDist(event, numg);
    203     Double_t dh = fMHadrons->CalcDist(event, numh);
     202    const Double_t dg = fMGammas->CalcDist(event, numg);
     203    const Double_t dh = fMHadrons->CalcDist(event, numh);
    204204
    205205    if (dg<0 || dh<0)
  • trunk/MagicSoft/Mars/mtemp/MObservatory.cc

    r1784 r1954  
    6161    {
    6262    case kMagic1:
    63         fLatitude  = Dms2Rad( 28, 45, 30.0);
    64         fLongitude = Dms2Rad(-17, 52, 48.0);
    65         fHeight    = 2326; // m
     63        // Values taken from the GPS Receiver positined in
     64        // the CT1 control room
     65        fLatitude  = Dms2Rad( 28, 45, 42.564);
     66        fLongitude = Dms2Rad(-17, 53, 27.426);
     67        fHeight    = 2198.7; // m
    6668        fObservatoryName = "Observatorio del Roque de los Muchachos (Magic1)";
    6769        return;
Note: See TracChangeset for help on using the changeset viewer.