| Rev | Line |  | 
|---|
| [224] | 1 | #include <stdio.h> | 
|---|
|  | 2 | #include <stdlib.h> | 
|---|
|  | 3 | #include <math.h> | 
|---|
|  | 4 | #include <iostream.h> | 
|---|
|  | 5 |  | 
|---|
| [274] | 6 | #include "outilsinit.h" | 
|---|
| [224] | 7 | #include "ntuple.h" | 
|---|
|  | 8 |  | 
|---|
|  | 9 | int main(int, char **) | 
|---|
|  | 10 | { | 
|---|
|  | 11 | PeidaInit(); | 
|---|
|  | 12 |  | 
|---|
|  | 13 | char * names[3] = {"XPos", "YPos", "Val"}; | 
|---|
|  | 14 | int i,j, k; | 
|---|
|  | 15 | float xnt[3]; | 
|---|
|  | 16 |  | 
|---|
|  | 17 | printf("Creation Ntuple avec X,Y,Val ... \n"); | 
|---|
|  | 18 | NTuple  nt1(3, names, 20); | 
|---|
|  | 19 |  | 
|---|
|  | 20 | k = 0; | 
|---|
|  | 21 | for(j=0; j<8; j++) | 
|---|
|  | 22 | for(i=0; i<12; i++) | 
|---|
|  | 23 | { xnt[0] = i+0.5;  xnt[1] = j+0.5;  xnt[2] = k; | 
|---|
|  | 24 | nt1.Fill(xnt); k++; } | 
|---|
|  | 25 |  | 
|---|
|  | 26 | nt1.Show(cout); | 
|---|
|  | 27 | nt1.Print(0, 5); | 
|---|
|  | 28 | nt1.Print(18, 5); | 
|---|
|  | 29 | nt1.Print(94, 5); | 
|---|
|  | 30 |  | 
|---|
| [583] | 31 | string fn = "nt.ppf"; | 
|---|
|  | 32 | { | 
|---|
| [224] | 33 | printf("Ecriture NTuple ds nt.ppf ... \n"); | 
|---|
| [583] | 34 | ObjFileIO<NTuple> fio(&nt1); | 
|---|
|  | 35 | fio.Write(fn); | 
|---|
|  | 36 | } | 
|---|
| [224] | 37 |  | 
|---|
| [583] | 38 | { | 
|---|
| [224] | 39 | printf("Lecture NTuple (nt2) ds nt.ppf ... \n"); | 
|---|
|  | 40 |  | 
|---|
| [583] | 41 | ObjFileIO<NTuple> fio(fn); | 
|---|
|  | 42 | NTuple* nt2 = (NTuple*)fio.DataObj(); | 
|---|
|  | 43 | nt2->Show(cout); | 
|---|
|  | 44 | nt2->Print(0, 5); | 
|---|
|  | 45 | nt2->Print(18, 5); | 
|---|
|  | 46 | nt2->Print(94, 5); | 
|---|
|  | 47 | } | 
|---|
| [224] | 48 |  | 
|---|
| [583] | 49 | /* | 
|---|
| [224] | 50 | printf("ReLecture NTuple (nt1) ds nt.ppf ... \n"); | 
|---|
|  | 51 |  | 
|---|
| [573] | 52 | nt1.Read("nt.ppf"); | 
|---|
| [224] | 53 | nt1.Show(cout); | 
|---|
|  | 54 | nt1.Print(0, 5); | 
|---|
|  | 55 | nt1.Print(18, 5); | 
|---|
|  | 56 | nt1.Print(94, 5); | 
|---|
|  | 57 |  | 
|---|
| [573] | 58 | printf("Creation/Lecture Lecture NTuple (nt1) ds nt.ppf ... \n"); | 
|---|
| [224] | 59 | NTuple nt3; | 
|---|
| [573] | 60 | nt3.Read("nt.ppf"); | 
|---|
| [224] | 61 | nt3.Show(cout); | 
|---|
|  | 62 | nt3.Print(0, 5); | 
|---|
|  | 63 | nt3.Print(18, 5); | 
|---|
|  | 64 | nt3.Print(94, 5); | 
|---|
| [583] | 65 | */ | 
|---|
| [224] | 66 |  | 
|---|
|  | 67 | exit(0); | 
|---|
|  | 68 | } | 
|---|
|  | 69 |  | 
|---|
|  | 70 |  | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.