Changeset 397 in Sophya for trunk/Poubelle


Ignore:
Timestamp:
Sep 1, 1999, 5:35:17 PM (26 years ago)
Author:
ansari
Message:

* empty log message *

Location:
trunk/Poubelle/archTOI.old
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Poubelle/archTOI.old/Makefile

    r372 r397  
    11CXX=cxx
    22CFITSIODIR=../cfitsio
    3 CPPFLAGS=-O -I$(CFITSIODIR)
    4 #CPPFLAGS=-g -I$(CFITSIODIR)
     3#CPPFLAGS=-O -I$(CFITSIODIR)
     4CPPFLAGS=-g -I$(CFITSIODIR)
    55LDLIBS=-L$(CFITSIODIR) -lcfitsio
    66archtoi: archtoimain.o archtoi.o archeopsfile.o decompress.o toiiter.o toisvr.o archeops.o \
    77         ssthandler.o toiinterpolator.o gpsparser.o asigps.o \
    8          auxinterpgps.o tsid.o
     8         auxinterpgps.o tsid.o archparam.o dyffttools.o fft_mayer.o \
     9         formepulse.o pisteetoile.o sstetoile.o transfelec.o
    910        $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ -lm
    1011archdump: archtoidump.o archeopsfile.o decompress.o archeops.o ssthandler.o
     
    2829 tsid.h
    2930gpsparser.o: gpsparser.cc gpsparser.h archeops.h archeops_28.h
    30 ssthandler.o: ssthandler.cc ssthandler.h archeops.h archeops_28.h
    3131test.o: test.cc archeopsfile.h archeops.h archeops_28.h ssthandler.h \
    3232 gpsparser.h archtoi.h toisvr.h toiiter.h auxgps.h tsid.h \
     
    4141archeops.o: archeops.c archeops_28.c archeops.h archeops_28.h
    4242decompress.o: decompress.c archeops.h archeops_28.h compress.h
     43transfelec.o: transfelec.cc transfelec.h
     44sstetoile.o: sstetoile.cc sstetoile.h
     45ssthandler.o: ssthandler.cc ssthandler.h archeops.h archeops_28.h \
     46 sstetoile.h pisteetoile.h transfelec.h formepulse.h
     47formepulse.o: formepulse.cc mayer_fft.h dyffttools.h transfelec.h \
     48 formepulse.h ssthardware.h
     49pisteetoile.o: pisteetoile.cc \
     50 /home/usr203/mnt/gnu/OSF1/lib/gcc-lib/alphaev5-dec-osf4.0d/2.8.1/include/math.h \
     51 /home/usr203/mnt/gnu/include/g++/iostream.h archparam.h pisteetoile.h \
     52 sstetoile.h transfelec.h formepulse.h
     53dyffttools.o: dyffttools.cc dyffttools.h
     54fft_mayer.o: fft_mayer.cc mayer_fft.h trigtbl.h
     55archparam.o: archparam.cc archparam.h
  • trunk/Poubelle/archTOI.old/archeopsfile.cc

    r396 r397  
    558558       memcpy(&blockSet->curBlock,&blk2,sizeof(blk2));
    559559       curKind = block_sst;
     560       //       cout << "process " << numero_block(&blockSet->curBlock) << "\n";
    560561       blockSet->sstHandler.ProcessBlock((block_type_sst*)&blockSet->curBlock);
    561562       break;
    562563     }
    563564     case block_sst : {
     565       //       cout << "process " << numero_block(&blockSet->curBlock) << "\n";
    564566       blockSet->sstHandler.ProcessBlock((block_type_sst*)&blockSet->curBlock);
    565567     }
  • trunk/Poubelle/archTOI.old/pisteetoile.cc

    r395 r397  
    116116//      if(!isAlive()) return;
    117117        indexDebutPiste=InDebutPiste;
     118        //      cout << "fill " << indexDebutPiste << "\n";
    118119        int* PhDiod=PhDiodArray;
    119120        int* pDataC=pData;
     
    130131        for(int i=0; i<nbdata; i++, PPhDiod++,pDataC++) *PPhDiod=(*pDataC);
    131132        indexDebutPiste+=nbdata;
     133        //      cout << "push " << nbdata << " " << indexDebutPiste << "\n";
    132134        return;
    133135}
     
    153155                if(testEtoile) {
    154156                // On emballe une etoile.
     157                  //              cout << "star " << setprecision(10) << TIndex << "\n";
    155158                        LastEtoile.FitForme=SuccesAFine;
    156159                        LastEtoile.X2Calc=X2Min;
     
    206209        gachette=false;
    207210        short iSeuil=0;
    208         double* pPiste =PhDiodPiste+Prepulselong;
     211        double* pPiste =PhDiodPiste+Prepulselong-1;
    209212       
    210213// On demande deux échantillons à 2 Vrms
    211         for (int i=0; i<(PhDiodTabLong-Prepulselong-1); i++, pPiste++) {
     214        for (int i=-1; i<(PhDiodTabLong-Prepulselong-1); i++, pPiste++) {
    212215                if (fabs(*pPiste)>(SeuilGachette*Vrms))
    213216                        if (fabs(*(pPiste+1))>SeuilGachette*Vrms) {
     
    272275//      On stocke les resultats
    273276                TIndex=indexDebutPiste+Prepulselong+MaxIndex+tmaxfit;
    274                
     277                //              cout << "tindex " << TIndex << " " <<indexDebutPiste<<" " <<Prepulselong << " " <<MaxIndex << " " << tmaxfit << "\n";
    275278                X2Min=0.;
    276279                SuccesAFine=false;
  • trunk/Poubelle/archTOI.old/ssthandler.cc

    r395 r397  
    184184        int jd0 = diodeHistLength-NbSampleBlock;
    185185
     186        //      cout << "find " << NoFirstSpInBlock << "\n";
    186187        bool FlagLBlockPerdu=false;
    187188        int ThisBlockNumb=numero_block(blk);
Note: See TracChangeset for help on using the changeset viewer.