Ignore:
Timestamp:
Sep 22, 1999, 2:35:06 PM (26 years ago)
Author:
ansari
Message:

nouvelles toi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Poubelle/archTOI.old/archeopsfile.cc

    r409 r410  
    777777}
    778778
     779int ArcheopsFile::getDilutionBlockNum() {
     780  if (!lastDilution()) return -1;
     781  return numero_block(lastDilution());
     782}
     783
    779784
    780785int ArcheopsFile::getSSTBlockNum() {
     
    938943}
    939944
     945double ArcheopsFile::getBoloRes(int ibolo, int imesure) {
     946  double i = getDACI(ibolo); // microAmps
     947  double v = getMuVBolo2T(ibolo, imesure); // microVolts
     948  double r = v/i; // Ohms
     949  return r;
     950}
     951
     952// Dilution
     953
     954int4 ArcheopsFile::getADCDil(int iADC) {
     955  block_type_dilution* blk = lastDilution();
     956  if (!blk) return 0;
     957  if (iADC < 0 || iADC > 47) return 0;
     958  return blk->ADC_dil[iADC];
     959}
     960
     961int4 ArcheopsFile::getSwitchDil() {
     962  block_type_dilution* blk = lastDilution();
     963  if (!blk) return 0;
     964  return blk->switch_dil;
     965}
     966
     967
    940968// SST, gyros...
    941969
     
    951979  return blockSet->sstHandler.getRawSignal(imesure, idiode);
    952980}
     981
     982long ArcheopsFile::getSSTSignalCN(int idiode, int imesure) {
     983
     984}
     985
     986long ArcheopsFile::getSSTRawSignalCN(int idiode, int imesure) {
     987
     988}
     989
     990
    953991
    954992double ArcheopsFile::getSSTStarZ(int istar, int imesure) {
Note: See TracChangeset for help on using the changeset viewer.