Changeset 1954 for trunk/MagicSoft/Mars
- Timestamp:
- 04/12/03 19:28:25 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1952 r1954 65 65 - changed the order of the arguments in the constructor 66 66 (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. 67 73 68 74 -
trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc
r1947 r1954 200 200 } 201 201 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); 204 204 205 205 if (dg<0 || dh<0) -
trunk/MagicSoft/Mars/mtemp/MObservatory.cc
r1784 r1954 61 61 { 62 62 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 66 68 fObservatoryName = "Observatorio del Roque de los Muchachos (Magic1)"; 67 69 return;
Note:
See TracChangeset
for help on using the changeset viewer.