Changeset 3067 for trunk/external-alma
- Timestamp:
- 11/25/15 12:55:39 (9 years ago)
- Location:
- trunk/external-alma/atnf/PKSIO
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external-alma/atnf/PKSIO/FITSreader.cc
r3029 r3067 56 56 const int getXPol, 57 57 const int getFeedPos, 58 const int getPointing,58 const int /* getPointing */, 59 59 const int coordSys) 60 60 { -
trunk/external-alma/atnf/PKSIO/GBTFITSreader.cc
r2940 r3067 2960 2960 } 2961 2961 2962 Double GBTFITSreader::getRefValLSR( long iRow, int idx, char *sampler, double restfreq )2962 Double GBTFITSreader::getRefValLSR( long iRow, int idx, char *sampler, double /*restfreq*/ ) 2963 2963 { 2964 2964 const string methodName = "getRefValLSR()" ; -
trunk/external-alma/atnf/PKSIO/MBFITSreader.cc
r1868 r3067 416 416 417 417 // ATCA-104. Updated position at epoch 2007/06/24 from Chris Phillips. 418 // antPos[0] = -4751640.182; // ±0.008419 // antPos[1] = 2791700.322; // ±0.006420 // antPos[2] = -3200490.668; // ±0.007418 // antPos[0] = -4751640.182; // ï¿œ 0.008 419 // antPos[1] = 2791700.322; // ï¿œ 0.006 420 // antPos[2] = -3200490.668; // ï¿œ 0.007 421 421 // 422 422 } else if (strncmp(names_.sta, "MOP", 3) == 0) { 423 423 // Mopra. Updated position at epoch 2007/06/24 from Chris Phillips. 424 424 sprintf(telescope, "%-16.16s", "ATMOPRA"); 425 antPos[0] = -4682769.444; // ±0.009426 antPos[1] = 2802618.963; // ±0.006427 antPos[2] = -3291758.864; // ±0.008425 antPos[0] = -4682769.444; // ï¿œ 0.009 426 antPos[1] = 2802618.963; // ï¿œ 0.006 427 antPos[2] = -3291758.864; // ï¿œ 0.008 428 428 429 429 } else if (strncmp(names_.sta, "HOB", 3) == 0) { … … 437 437 // Ceduna. Updated position at epoch 2007/06/24 from Chris Phillips. 438 438 sprintf(telescope, "%-16.16s", "CEDUNA"); 439 antPos[0] = -3753443.168; // ±0.017440 antPos[1] = 3912709.794; // ±0.017441 antPos[2] = -3348067.060; // ±0.016439 antPos[0] = -3753443.168; // ï¿œ 0.017 440 antPos[1] = 3912709.794; // ï¿œ 0.017 441 antPos[2] = -3348067.060; // ï¿œ 0.016 442 442 443 443 } else if (strncmp(names_.sta, "tid", 3) == 0) { … … 486 486 487 487 int MBFITSreader::getFreqInfo( 488 int & nIF,489 double* & startFreq,490 double* & endFreq)488 int &/*nIF*/, 489 double* &/*startFreq*/, 490 double* &/*endFreq*/) 491 491 { 492 492 // This is RPFITS - can't do it! … … 499 499 500 500 int MBFITSreader::findRange( 501 int & nRow,502 int & nSel,503 char dateSpan[2][32],504 double utcSpan[2],505 double* & positions)501 int &/*nRow*/, 502 int &/*nSel*/, 503 char /*dateSpan*/[2][32], 504 double /*utcSpan*/[2], 505 double* &/*positions*/) 506 506 { 507 507 // This is RPFITS - can't do it! -
trunk/external-alma/atnf/PKSIO/PKSFITSreader.cc
r1868 r3067 82 82 Int PKSFITSreader::open( 83 83 const String fitsName, 84 const String antenna,84 const String /*antenna*/, 85 85 Vector<Bool> &beams, 86 86 Vector<Bool> &IFs, -
trunk/external-alma/atnf/PKSIO/PKSwriter.h
r1757 r3067 76 76 77 77 // Write a history record. 78 virtual Int history(const String text) {return 0;};79 virtual Int history(const char * text) {return 0;};78 virtual Int history(const String /*text*/) {return 0;}; 79 virtual Int history(const char */*text*/) {return 0;}; 80 80 81 81 // Close the output file. -
trunk/external-alma/atnf/PKSIO/SDFITSreader.cc
r2940 r3067 1938 1938 // the corresponding error message and the CFITSIO message stack. 1939 1939 1940 void SDFITSreader::log(LogOrigin origin, LogIO::Command cmd, const char *msg)1940 void SDFITSreader::log(LogOrigin origin, LogIO::Command priority, const char *msg) 1941 1941 { 1942 1942 LogIO os( origin ) ; 1943 1943 1944 os << msg << endl ;1944 os << priority << msg << endl ; 1945 1945 1946 1946 if (cStatus > 0) {
Note:
See TracChangeset
for help on using the changeset viewer.