source: Sophya/trunk/AddOn/TAcq/chanum_1210.cc@ 4016

Last change on this file since 4016 was 3941, checked in by cmv, 15 years ago

on enleve le binnig en freq, pas bon car RFI, cmv 26/01/2011

File size: 5.3 KB
Line 
1// Lecture des fichiers chanum_?.ppf et recherche des visibilites ecrites dans les matrices d'acq
2// > make OBJ=$CMVPROG/obj/ EXE=$CMVPROG/exe/ chanum_1210
3#include "sopnamsp.h"
4#include "machdefs.h"
5#include <math.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
9#include <unistd.h>
10#include <sys/stat.h>
11#include <fstream>
12#include <iostream>
13#include <string>
14#include <algorithm>
15
16#include "pexceptions.h"
17#include "tvector.h"
18#include "nbtrixx.h"
19
20// > chanum_1210 -f 1375.0610351 -o CasA02Dec.csh ../../crt*/PittsDec10/CasA02Dec/chanum_*.ppf
21// > chanum_1210 -f 1375.0610351 -o Crab03Dec.csh ../../crt*/PittsDec10/Crab03Dec/chanum_*.ppf
22// > chanum_1210 -f 1382.5378418 -o Sun03Dec.csh ../../crt*/PittsDec10/Sun03Dec/chanum_*.ppf
23// > chanum_1210 -f 1390.0146484 -o CasA03Dec.csh ../../crt*/PittsDec10/CasA03Dec/chanum_*.ppf
24
25int decode_numthread(string filein,string& dir);
26
27//--------------------------- Fonctions de ce fichier -------------------
28void usage(void);
29void usage(void)
30{
31cout<<"Usage: chanum_1210 [options] chanum_?.ppf ..."<<endl
32 <<" -f F0MHz : 1ere frequence pour cette acquisition (def=0.)"<<endl
33 <<" -T it0,it1 : selection fichier temps de it0 a it1 (def=\"0,99999\")"<<endl
34 <<" -o fichier.csh : nom du fichier de sortie pour les commandes a lancer"<<endl;
35}
36
37//----------------------------------------------------
38int main(int narg, char* arg[])
39{
40 string outname = "chanum_1210.csh";
41 string seltime = "0,99999";
42 double freq0 = 0.;
43
44 char c;
45 while((c = getopt(narg,arg,"hO:o:f:T:")) != -1) {
46 switch (c) {
47 case 'f' :
48 freq0 = atof(optarg);
49 break;
50 case 'o' :
51 outname = optarg;
52 break;
53 case 'T' :
54 seltime = optarg;
55 break;
56 case 'h' :
57 default :
58 usage(); return -1;
59 }
60 }
61 if(optind>=narg) {usage(); return -2;}
62
63 vector<uint_4> vcode, vnth, vrow;
64 vector<string> vdir;
65 int nvisi = 0;
66 for(int ifile=optind;ifile<narg;ifile++) {
67 // --- lecture file
68 string filein = arg[ifile];
69 cout<<"..file: "<<filein<<endl;
70 struct stat buffer;
71 int status = stat(filein.c_str(),&buffer);
72 if(status) {cout<<"!!!UNKNOWN FILE"<<endl; continue;}
73 PInPersist pin(filein);
74 TVector<uint_4> chanpairnum;
75 if(pin.GotoNameTag("chanpairnum")) pin.GetObject(chanpairnum,"chanpairnum");
76 else {cout<<"!!!UNKNOWN OBJECTchanpairnum "<<endl; continue;}
77 // --- decodage repertoire et num thread
78 string dir;
79 int nth = decode_numthread(filein,dir);
80 if(nth<0) {cout<<"!!!DECODING PB for thread number"<<endl; continue;}
81 // --- lecture des paires et des infos
82 for(int row=0;row<chanpairnum.Size();row++) {
83 vcode.push_back(chanpairnum(row));
84 vnth.push_back(nth);
85 vrow.push_back(row);
86 vdir.push_back(dir);
87 nvisi++;
88 }
89 }
90 cout<<"nread="<<nvisi<<endl;
91
92 // sort
93 TVector<uint_4> Vcode(vcode), IVcode(vcode.size());
94 TabSortInd(Vcode.Size(),Vcode.Data(),IVcode.Data());
95
96 // ecriture
97 {
98 ofstream ftxt(outname.c_str(), ofstream::out);
99 cout<<"writing in "<<outname<<" (is_open="<<ftxt.is_open()<<")"<<endl;
100 if(!ftxt) {cout<<"!!!!OPENING failed "<<outname<<endl; return -3;}
101 ftxt << "#!/bin/csh" <<endl;
102 int dupli = 0, ndupli = 0;
103 nvisi = 0;
104 for(uint_4 i=0;i<vcode.size();i++) {
105 char str[512];
106 sprintf(str,"time ${TACQEXE}/svv2mtx2_1210 -f %.7f -T %s",freq0,seltime.c_str());
107 string argu = str;
108 uint_4 ip = IVcode(i);
109 uint_4 vcode_prec = (i>0) ? vcode[IVcode(i-1)]: 99999999;
110 uint_4 vcode_suiv = (i<vcode.size()-1) ? vcode[IVcode(i+1)]: 99999999;
111 uint_4 v1 = vcode[ip]/1000, v2 = vcode[ip]%100;
112 sprintf(str," -v %d,%d",v1,v2); argu += str; // numero de canaux acq [1,32]
113 sprintf(str," -t %d",vnth[ip]); argu += str; // numero de threads
114 sprintf(str," -r %d",vrow[ip]); argu += str; // ligne de la matrice acq
115 // L'acq fait: <v1.conj(v2)>
116 // Si v1 et v2 sont de parites differentes donc de cylindres differents
117 // on veut toujours avoir une visi <E.conj(W)> cad <impair.conj(pair)>
118 bool doconj = false;
119 if( v1%2==0 && v2%2!=0 ) {argu += " -C"; doconj = true;} // v1 pair et v2 impair
120 // nom du fichier de sortie avec gestion des duplications
121 if(vcode_suiv==vcode[ip] || vcode_prec==vcode[ip]) argu += " -D";
122 if(vcode_prec==vcode[ip]) {
123 dupli++;
124 if(i==vcode.size()-1) ndupli += dupli;
125 } else {
126 ndupli += dupli;
127 dupli = 0;
128 }
129 sprintf(str," -o visi%d_%02d_%02d.ppf",dupli,v1,v2); argu += str;
130 argu += " "; argu += vdir[ip]; // repertoire des fichiers acq
131 ftxt << argu <<endl;
132 nvisi++;
133 cout<<i<<" "<<ip<<" "<<vcode[ip]<<" "<<v1<<","<<v2<<" th="<<vnth[ip]<<" ro="<<vrow[ip]
134 <<" du="<<dupli<<" cj="<<doconj<<" "<<vdir[ip]<<endl;
135 }
136 cout<<"nvisi tot="<<nvisi<<", number of duplicate="<<ndupli<<", nvisi="<<nvisi-ndupli<<" / 528"<<endl;
137 ftxt << "exit 0" <<endl;
138 }
139
140 // script should be executable
141 string chmod = "chmod a+x "; chmod += outname;
142 system(chmod.c_str());
143
144 return 0;
145}
146
147//-------------------------------------------------
148int decode_numthread(string filein,string& dir)
149{
150 unsigned int p = filein.rfind("chanum_");
151 if(p>=filein.size()) return -1;
152 if(p<=1) dir = ""; else dir = filein.substr(0,p-1);
153 const char * c = (filein.c_str() + p);
154 int nth = -2;
155 sscanf(c,"chanum_%d.ppf",&nth);
156 //cout<<"\""<<filein<<"\" "<<p<<" \""<<c<<"\" "<<nth<<" \""<<dir<<"\""<<endl;
157 return nth;
158}
159
Note: See TracBrowser for help on using the repository browser.