Changeset 419 in Sophya
- Timestamp:
- Sep 23, 1999, 1:09:36 PM (26 years ago)
- Location:
- trunk/Poubelle/archTOI.old
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Poubelle/archTOI.old/archeopsfile.cc
r418 r419 1079 1079 1080 1080 1081 double ArcheopsFile::getAzimut(int imesure) {return imesure*360/nEchBlock();}1081 double ArcheopsFile::getAzimut(int imesure) {return 0;} 1082 1082 double ArcheopsFile::getPendDirect(int /*imesure*/) {return 0;} 1083 1083 double ArcheopsFile::getPendOrth(int /*imesure*/) {return 0;} 1084 double ArcheopsFile::getAlpha (int /*imesure*/) {return 0;}1085 double ArcheopsFile::getDelta (int /*imesure*/) {return 0;}1084 double ArcheopsFile::getAlphaAxis(int /*imesure*/) {return 0;} 1085 double ArcheopsFile::getDeltaAxis(int /*imesure*/) {return 0;} -
trunk/Poubelle/archTOI.old/archeopsfile.h
r418 r419 168 168 double getPendOrth(int imesure); 169 169 170 double getAlpha (int imesure);171 double getDelta (int imesure);170 double getAlphaAxis(int imesure); 171 double getDeltaAxis(int imesure); 172 172 173 173 static double decodeMJD(string const& dateString); // sans tenir compte de TU-TLeg -
trunk/Poubelle/archTOI.old/toiiter.cc
r416 r419 16 16 #include <dirent.h> 17 17 #include <iostream.h> 18 #include "templocator.h" 18 19 19 20 // Format bloc GPS … … 238 239 break; 239 240 case azimut: 240 file->needSSTProcessMask(SSTHandler::findPeriod); 241 trigMask |= block_sst_mask; 241 trigMask |= block_bolo_mask; 242 //file->needSSTProcessMask(SSTHandler::findPeriod); 243 //trigMask |= block_sst_mask; 242 244 break; 243 245 case sstStarCnt: … … 270 272 case alphaBolo: 271 273 case deltaBolo: 272 file->needSSTProcessMask(SSTHandler::findAxis); 273 trigMask |= block_sst_mask; 274 trigMask |= block_bolo_mask; 275 //file->needSSTProcessMask(SSTHandler::findAxis); 276 //trigMask |= block_sst_mask; 274 277 break; 275 278 } … … 484 487 case alphaAxis: 485 488 case deltaAxis: 486 return false;489 return true; 487 490 //return (file->lastGPS() != NULL && file->lastSST() != NULL); 488 491 case alphaSst: … … 587 590 return tSid.getLST(getMJD()); 588 591 case azimut: 589 return file->getAzimut(imes);590 592 case alphaAxis: 591 return file->getAlpha(imes); 592 case deltaAxis: 593 return file->getDelta(imes); 593 case deltaAxis: { 594 double lat, lon; 595 if (auxGPS) { 596 double alti; 597 auxGPS->getLocation(getMJD(), lat, lon, alti); 598 } else { 599 lon = file->getGPSLong(); 600 lat = file->getGPSLat(); 601 } 602 tSid.setLongitude(lon); 603 double ts = tSid.getLST(getMJD()); 604 tempLocator.setEarthPos(lon, lat); 605 tempLocator.setTSid(ts); 606 if ((kind) == alphaAxis) return tempLocator.getAlphaZenith(); 607 if ((kind) == deltaAxis) return tempLocator.getDeltaZenith(); 608 return 0; 609 } 594 610 } 595 611 return -1; -
trunk/Poubelle/archTOI.old/toiiter.h
r416 r419 43 43 gyroSpeed, // vitesse gyro, deg/s, index = 0,1,2, calibree... 44 44 gpsTime, // temps fourni par GPS 45 longitude, // position ballon, degrees 46 latitude, // position ballon, degrees 45 longitude, // position ballon, degrees +=EST 46 latitude, // position ballon, degrees +=NORD 47 47 altitude, // position ballon, m 48 48 tsid, // temps sideral en secondes
Note:
See TracChangeset
for help on using the changeset viewer.