[1738] | 1 | // ArchTOIPipe (C) CEA/DAPNIA/SPP IN2P3/LAL
|
---|
| 2 | // Eric Aubourg
|
---|
| 3 | // Christophe Magneville
|
---|
| 4 | // Reza Ansari
|
---|
[2007] | 5 | // $Id: simtoipr.cc,v 1.19 2002-05-15 22:44:51 ansari Exp $
|
---|
[1738] | 6 |
|
---|
[1764] | 7 | #include "config.h"
|
---|
| 8 |
|
---|
[1462] | 9 | #include "array.h"
|
---|
[1442] | 10 | #include "simtoipr.h"
|
---|
[1454] | 11 | #include <math.h>
|
---|
[1442] | 12 | #include "toimanager.h"
|
---|
| 13 | #include "pexceptions.h"
|
---|
| 14 | #include "ctimer.h"
|
---|
[1479] | 15 | #include "fftpserver.h"
|
---|
[1442] | 16 |
|
---|
[1999] | 17 | #include "flagtoidef.h"
|
---|
| 18 |
|
---|
[1479] | 19 | SimpleDeglitcher::SimpleDeglitcher(int wsz, double ns, int maxnpt, int minnpt)
|
---|
[1442] | 20 | {
|
---|
[1478] | 21 | SetWSize(wsz);
|
---|
[1479] | 22 | SetDetectionParam(ns, ns/2., maxnpt, minnpt);
|
---|
[1478] | 23 | SetRange(-9.e39, 9.e39);
|
---|
| 24 | RepBadSamples(true, true);
|
---|
[1442] | 25 |
|
---|
[1478] | 26 | totnscount = glnscount = glcount = out_range_nscount = 0;
|
---|
| 27 | deglitchdone = false;
|
---|
| 28 |
|
---|
[1442] | 29 | cout << "SimpleDeglitcher::SimpleDeglitcher() WSize= " << wsz
|
---|
| 30 | << " nSig=" << ns << " maxNPt=" << maxnpt << endl;
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | SimpleDeglitcher::~SimpleDeglitcher()
|
---|
| 34 | {
|
---|
| 35 | }
|
---|
| 36 |
|
---|
[1479] | 37 | void SimpleDeglitcher::SetDetectionParam(double ns, double ns2, int maxnpt,
|
---|
| 38 | int minnpt, int wszrec)
|
---|
[1478] | 39 | {
|
---|
| 40 | nsig = (ns > 0.01) ? ns : 1.;
|
---|
| 41 | nsig2 = (ns2 > 0.01) ? ns2 : nsig/2.;
|
---|
| 42 | maxpoints = ((maxnpt > 0) && (maxnpt <= wsize)) ? maxnpt : 5;
|
---|
[1479] | 43 | minpoints = ((minnpt > 0) && (minnpt <= maxpoints)) ? minnpt : maxpoints/2;
|
---|
[1478] | 44 | wrecsize = ((wszrec > 0) && (wszrec <= wsize)) ? wszrec : 2*maxpoints;
|
---|
| 45 | }
|
---|
[1454] | 46 |
|
---|
[1478] | 47 | inline char * _Bool2YesNo(bool fg)
|
---|
| 48 | {
|
---|
| 49 | if (fg) return "YES" ;
|
---|
| 50 | else return "NO" ;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[1762] | 53 | void SimpleDeglitcher::PrintStatus(::ostream & os)
|
---|
[1443] | 54 | {
|
---|
| 55 | os << "\n ------------------------------------------------------ \n"
|
---|
| 56 | << " SimpleDeglitcher::PrintStatus() - WindowSize=" << WSize()
|
---|
[1479] | 57 | << " MaxPoints=" << MaxPoints() << " MinPoints=" << MinPoints() << endl;
|
---|
| 58 | os << " NbSigmas=" << NbSigmas()
|
---|
| 59 | << " NbSigmas2=" << NbSigmas2() << " WRecSize= " << WRecSize()
|
---|
[1478] | 60 | << " Range_Min= " << range_min << " Range_Max= " << range_max << endl;
|
---|
| 61 | os << " RepOutOfRangeSamples: " << _Bool2YesNo(rec_out_range_samples)
|
---|
| 62 | << " RepGlitchSamples: " << _Bool2YesNo(rec_gl_samples)
|
---|
| 63 | << " UseWRec: " << _Bool2YesNo(rec_use_wrec) << endl;
|
---|
[1443] | 64 | TOIProcessor::PrintStatus(os);
|
---|
| 65 | if (deglitchdone) os << " Deglitching performed " << endl;
|
---|
| 66 | else os << " NO deglitching done " << endl;
|
---|
[1454] | 67 | double nst = (ProcessedSampleCount() > 0) ? ProcessedSampleCount() : 1.;
|
---|
| 68 | os << " ProcessedSampleCount=" << ProcessedSampleCount()
|
---|
| 69 | << " OutOfRangeSampleCount=" << OutOfRangeSampleCount() << endl;
|
---|
| 70 | os << " GlitchCount= " << GlitchCount()
|
---|
| 71 | << " GlitchSampleCount=" << GlitchSampleCount()
|
---|
[1443] | 72 | << "( " << (double)GlitchSampleCount()*100./nst << " % )" << endl;
|
---|
| 73 | os << " ------------------------------------------------------ " << endl;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[1442] | 76 | void SimpleDeglitcher::init() {
|
---|
| 77 | cout << "SimpleDeglitcher::init" << endl;
|
---|
| 78 | declareInput("in");
|
---|
| 79 | declareOutput("out");
|
---|
| 80 | declareOutput("mean");
|
---|
| 81 | declareOutput("sigma");
|
---|
[1443] | 82 | declareOutput("incopie");
|
---|
[1442] | 83 | name = "SimpleDeglitcher";
|
---|
| 84 | // upExtra = 1; A quoi ca sert ?
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[1478] | 87 |
|
---|
[1442] | 88 | void SimpleDeglitcher::run() {
|
---|
| 89 |
|
---|
| 90 | // TOIManager* mgr = TOIManager::getManager();
|
---|
| 91 | int snb = getMinIn();
|
---|
| 92 | int sne = getMaxIn();
|
---|
| 93 |
|
---|
| 94 | bool fgout = checkOutputTOIIndex(0);
|
---|
| 95 | bool fgmean = checkOutputTOIIndex(1);
|
---|
| 96 | bool fgsigma = checkOutputTOIIndex(2);
|
---|
[1443] | 97 | bool fgincopie = checkOutputTOIIndex(3);
|
---|
[1442] | 98 |
|
---|
| 99 | if (!checkInputTOIIndex(0)) {
|
---|
| 100 | cerr << " SimpleDeglitcher::run() - Input TOI (in) not connected! "
|
---|
| 101 | << endl;
|
---|
| 102 | throw ParmError("SimpleDeglitcher::run() Input TOI (in) not connected!");
|
---|
| 103 | }
|
---|
[1443] | 104 | if (!fgout && !fgmean && !fgsigma &&!fgincopie) {
|
---|
[1442] | 105 | cerr << " SimpleDeglitcher::run() - No Output TOI connected! "
|
---|
| 106 | << endl;
|
---|
| 107 | throw ParmError("SimpleDeglitcher::run() No output TOI connected!");
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | if (!fgout) {
|
---|
| 111 | cout << "Warning: SimpleDeglitcher::run() - No TOI connected to out \n"
|
---|
| 112 | << " No deglitching would be performed !" << endl;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[1443] | 115 | cout << " SimpleDeglitcher::run() SNRange=" << snb << " - " << sne << endl;
|
---|
[1442] | 116 | try {
|
---|
[1443] | 117 | Timer tm("SimpleDeglitcher::run()");
|
---|
[1442] | 118 | Vector vin(wsize);
|
---|
[1478] | 119 | Vector vas(wsize);
|
---|
[1467] | 120 |
|
---|
[1478] | 121 | int wrecsize = maxpoints*2;
|
---|
| 122 | Vector vrec(wrecsize);
|
---|
[1467] | 123 |
|
---|
[1532] | 124 | TVector<uint_8> vfg(wsize);
|
---|
[1467] | 125 | int wsz2 = wsize/2;
|
---|
| 126 | // Le debut
|
---|
[1442] | 127 | int k;
|
---|
[1467] | 128 | for(k=0; k<wsz2; k++)
|
---|
[1464] | 129 | getData(0, k+snb, vin(k), vfg(k));
|
---|
| 130 |
|
---|
[1479] | 131 | int nokdebut = 0;
|
---|
[1467] | 132 | double s = 0.;
|
---|
| 133 | double mean = 0.;
|
---|
| 134 | double s2 = 0.;
|
---|
| 135 | double sigma = 0.;
|
---|
| 136 | for(k=0; k<wsz2; k++) {
|
---|
| 137 | if ( vfg(k) != 0) continue;
|
---|
| 138 | if ( (vin(k) < range_min) || (vin(k) > range_max) ) continue;
|
---|
| 139 | s += vin(k);
|
---|
| 140 | s2 += vin(k)*vin(k);
|
---|
| 141 | nokdebut++;
|
---|
[1454] | 142 | }
|
---|
[1467] | 143 | if (nokdebut > 0) {
|
---|
| 144 | mean = s/nokdebut;
|
---|
| 145 | if (nokdebut > 1) sigma = sqrt(s2/nokdebut-mean*mean);
|
---|
| 146 | }
|
---|
| 147 | for(k=wsz2; k<wsize; k++) {
|
---|
| 148 | vin(k) = mean;
|
---|
| 149 | vfg(k) = 0;
|
---|
| 150 | }
|
---|
[1478] | 151 | for(k=0; k<wsize; k++) {
|
---|
| 152 | vas(k) = mean;
|
---|
| 153 | if ( vfg(k) != 0) continue;
|
---|
| 154 | if ( (vin(k) < range_min) || (vin(k) > range_max) ) continue;
|
---|
| 155 | vas(k) = vin(k);
|
---|
| 156 | }
|
---|
[1454] | 157 |
|
---|
[1478] | 158 | for(k=0; k<wrecsize; k++) {
|
---|
[1467] | 159 | if ( (vin(k) < range_min) || (vin(k) > range_max) ) vrec(k)=mean;
|
---|
| 160 | else vrec(k)=vin(k);
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | bool fgokdebut = false;
|
---|
| 164 |
|
---|
[1442] | 165 | int kgl = -1;
|
---|
| 166 | int ii,lastput;
|
---|
| 167 | bool fgglitch = false;
|
---|
| 168 | double valcur,valsub,valadd;
|
---|
[1467] | 169 | double lastvalok = mean;
|
---|
[1454] | 170 | uint_8 fgcur;
|
---|
[1467] | 171 | bool fgokcur=false;
|
---|
[1484] | 172 |
|
---|
| 173 | int sx_refresh_count = 0;
|
---|
| 174 | int sx_refresh_count_max = 16*wsize;
|
---|
| 175 |
|
---|
[1454] | 176 | // Boucle sur les sampleNum
|
---|
[1467] | 177 | int knext;
|
---|
| 178 | int kfin = sne-snb;
|
---|
| 179 | for(k=0;k<=kfin;k++) {
|
---|
[1442] | 180 | totnscount++;
|
---|
[1443] | 181 | // if (k%10000 == 0) cout << " DBG: K=" << k << endl;
|
---|
[1467] | 182 | knext = k+wsz2;
|
---|
[1442] | 183 | // Calcul mean-sigma
|
---|
[1467] | 184 | if (knext<=kfin) {
|
---|
[1478] | 185 | valsub = vas(knext%wsize);
|
---|
[1467] | 186 | getData(0, knext+snb, vin(knext%wsize), vfg(knext%wsize));
|
---|
| 187 | valadd = vin(knext%wsize);
|
---|
[1478] | 188 | if ( vfg(knext%wsize) ||
|
---|
| 189 | (valadd < range_min) || (valadd > range_max) ) {
|
---|
| 190 | vas(knext%wsize) = valadd = mean;
|
---|
[1467] | 191 | fgokcur = false;
|
---|
| 192 | }
|
---|
[1478] | 193 | else {
|
---|
| 194 | vas(knext%wsize) = valadd = vin(knext%wsize);
|
---|
| 195 | fgokcur = true;
|
---|
| 196 | }
|
---|
[1467] | 197 | if (!fgokdebut && fgokcur) {
|
---|
| 198 | s += valadd;
|
---|
| 199 | s2 += valadd*valadd;
|
---|
| 200 | nokdebut++;
|
---|
| 201 | mean = s/nokdebut;
|
---|
| 202 | if (nokdebut > 1) sigma = sqrt(s2/nokdebut-mean*mean);
|
---|
| 203 | if (nokdebut >= wsize) {
|
---|
| 204 | fgokdebut = true;
|
---|
| 205 | cout << " SimpleDeglitcher::DebugInfo - nokdebut=" << nokdebut
|
---|
| 206 | << " k=" << k << " knext=" << knext
|
---|
| 207 | << "\n ...DebugInfo mean=" << mean
|
---|
| 208 | << " sigma=" << sigma << " s=" << s << " s2=" << s2 << endl;
|
---|
| 209 | }
|
---|
| 210 | }
|
---|
| 211 | else {
|
---|
[1484] | 212 | if (sx_refresh_count >= sx_refresh_count_max) {
|
---|
| 213 | // On recalcule la somme
|
---|
| 214 | s = vas.Sum();
|
---|
| 215 | s2 = vas.SumX2();
|
---|
| 216 | sx_refresh_count = 0;
|
---|
| 217 | }
|
---|
| 218 | else {
|
---|
| 219 | s += (valadd-valsub);
|
---|
| 220 | s2 += (valadd*valadd-valsub*valsub);
|
---|
| 221 | sx_refresh_count++;
|
---|
| 222 | }
|
---|
[1467] | 223 | mean = s/wsize;
|
---|
| 224 | sigma = sqrt(s2/wsize-mean*mean);
|
---|
| 225 | }
|
---|
[1442] | 226 | }
|
---|
| 227 |
|
---|
[1467] | 228 |
|
---|
[1442] | 229 | // On gere les sorties Mean et Sigma
|
---|
| 230 | if (fgmean)
|
---|
| 231 | putData(1, k+snb, mean, 0);
|
---|
| 232 | if (fgsigma)
|
---|
| 233 | putData(2, k+snb, sigma, 0);
|
---|
[1454] | 234 | if (fgincopie)
|
---|
| 235 | putData(3, k+snb, vin(k%wsize), vfg(k%wsize));
|
---|
[1442] | 236 |
|
---|
[1478] | 237 | valcur = vin(k%wsize);
|
---|
[1454] | 238 | if ( (valcur < range_min) || (valcur > range_max) ) {
|
---|
[1478] | 239 | valcur = (rec_use_wrec) ? vrec.Sum()/wrecsize : mean;
|
---|
| 240 | if (rec_out_range_samples) vin(k%wsize) = valcur;
|
---|
[1999] | 241 | vfg(k%wsize) |= FlgToiOut;
|
---|
[1454] | 242 | out_range_nscount++;
|
---|
| 243 | }
|
---|
[1467] | 244 | valcur = vin(k%wsize);
|
---|
| 245 | fgcur = vfg(k%wsize);
|
---|
[1443] | 246 |
|
---|
[1442] | 247 | if (!fgout) continue; // Pas de sortie out (deglitche)
|
---|
| 248 |
|
---|
[1443] | 249 |
|
---|
| 250 | // if (k<100) {
|
---|
| 251 | // cout << "DBG-A-Deglitch[" << k << "] mean="
|
---|
| 252 | // << mean << " sigma=" << sigma << " valcur="
|
---|
| 253 | // << valcur << " Kgl=" << kgl ;
|
---|
| 254 | // if (fgglitch) cout << " In Glitch" ;
|
---|
| 255 | // cout << endl;
|
---|
| 256 | // }
|
---|
[1442] | 257 |
|
---|
[1478] | 258 | double curnsig = (fgglitch) ? nsig2 : nsig;
|
---|
[1467] | 259 |
|
---|
| 260 | if (valcur < mean+curnsig*sigma) { // inferieur au seuil
|
---|
[1442] | 261 | if (fgglitch) {
|
---|
[1479] | 262 | if ( (k-kgl <= maxpoints) && (k-kgl >= minpoints) ) {
|
---|
| 263 | // On vient de detecter un glitch
|
---|
[1442] | 264 | glcount++;
|
---|
[1478] | 265 | if (rec_gl_samples) { // On change la valeur des samples
|
---|
| 266 | double recval = (rec_use_wrec) ? vrec.Sum()/wrecsize : mean;
|
---|
| 267 | for(ii=kgl; ii<k; ii++) {
|
---|
[1999] | 268 | putData(0, ii+snb, recval, vfg(ii%wsize)|FlgToiSpike);
|
---|
[1478] | 269 | glnscount++;
|
---|
| 270 | }
|
---|
[1442] | 271 | }
|
---|
[1478] | 272 | else { // On ne fait que flagger les echantillons
|
---|
| 273 | for(ii=kgl; ii<k; ii++) {
|
---|
[1999] | 274 | putData(0, ii+snb, vin(ii%wsize), vfg(ii%wsize)|FlgToiSpike);
|
---|
[1478] | 275 | glnscount++;
|
---|
| 276 | }
|
---|
| 277 | }
|
---|
[1442] | 278 | lastput = snb+k-1;
|
---|
[1478] | 279 | } // - Fin de detection de glitch
|
---|
[1479] | 280 | else { // Trop long ou trop court - ce n'est pas un glitch ...
|
---|
[2007] | 281 | uint_8 flg_src = 0;
|
---|
| 282 | if (k-kgl > maxpoints) flg_src = FlgToiSource; // Si trop long
|
---|
| 283 | for(ii=kgl; ii<k; ii++)
|
---|
| 284 | putData(0, ii+snb, vin(ii%wsize), vfg(ii%wsize)|flg_src);
|
---|
| 285 |
|
---|
[1442] | 286 | lastput = snb+k-1;
|
---|
[2007] | 287 | }
|
---|
[1442] | 288 | }
|
---|
[1478] | 289 | putData(0, k+snb, vin(k%wsize), vfg(k%wsize));
|
---|
[1442] | 290 | lastput = snb+k;
|
---|
| 291 | kgl = -1; fgglitch = false;
|
---|
[1478] | 292 | vrec(k%wrecsize) = lastvalok = valcur;
|
---|
[1442] | 293 | }
|
---|
| 294 | else { // Superieur au seuil
|
---|
| 295 | if (fgglitch) {
|
---|
[1479] | 296 | if (k-kgl+1 > maxpoints) { // serie de points > seuil
|
---|
[1442] | 297 | for(ii=kgl; ii<=k; ii++) // -> Donc pas glitch
|
---|
[1454] | 298 | putData(0, ii+snb, vin(ii%wsize), vfg(ii%wsize));
|
---|
[1442] | 299 | lastput = snb+k;
|
---|
| 300 | fgglitch = false;
|
---|
[1478] | 301 | vrec(k%wrecsize) = lastvalok = valcur;
|
---|
[1442] | 302 | }
|
---|
| 303 | }
|
---|
| 304 | else {
|
---|
| 305 | if (kgl < 0) { // debut possible de glitch
|
---|
| 306 | fgglitch = true; kgl = k;
|
---|
| 307 | }
|
---|
| 308 | else { // On est toujours dans une serie > seuil
|
---|
[1478] | 309 | putData(0, k+snb, vin(k%wsize), vfg(k%wsize));
|
---|
| 310 | lastput = snb+k; lastvalok = valcur;
|
---|
[1442] | 311 | }
|
---|
[1478] | 312 | vrec(k%wrecsize) = lastvalok;
|
---|
[1442] | 313 | }
|
---|
| 314 | }
|
---|
| 315 |
|
---|
[1443] | 316 | // if (k%5000 == 0) cout << " ---DBG2: K=" << k << " glcount="
|
---|
| 317 | // << glcount << " LastPut= " << lastput << endl;
|
---|
| 318 | } // Fin de Boucle sur les num-sample
|
---|
| 319 |
|
---|
| 320 | //DBG cout << " La fin lastput=" << lastput << " SNE=" << sne;
|
---|
| 321 | //DBG for(k=lastput-snb+1; k<sne-snb; k++)
|
---|
| 322 | //DBG putData(0, k+snb, vin(k%wsize), 0);
|
---|
| 323 | // cout << " DBG3- OUT of try bloc ! " << endl;
|
---|
| 324 | cout << " SimpleDeglitcher::run() - End of processing "
|
---|
[1454] | 325 | << " ProcessedSampleCount=" << ProcessedSampleCount()
|
---|
[1443] | 326 | << " GlitchCount= " << GlitchCount() << endl;
|
---|
| 327 | if (fgout) deglitchdone = true;
|
---|
[1442] | 328 | } // Bloc try
|
---|
| 329 | catch (PException & exc) {
|
---|
| 330 | cerr << "SimpleDeglitcher: Catched Exception " << (string)typeid(exc).name()
|
---|
| 331 | << "\n .... Msg= " << exc.Msg() << endl;
|
---|
| 332 | }
|
---|
| 333 | }
|
---|
| 334 |
|
---|
| 335 |
|
---|
[1454] | 336 | // -------------------------------------------------------------------
|
---|
| 337 | // Classe SimpleFilter : Filtre simple ds le domaine temporel
|
---|
| 338 | // -------------------------------------------------------------------
|
---|
[1442] | 339 |
|
---|
[1454] | 340 | string SimpleFilter::FilterKind2String(FilterKind fk)
|
---|
| 341 | {
|
---|
| 342 | switch (fk) {
|
---|
| 343 | case UserFilter :
|
---|
| 344 | return ("UserFilter");
|
---|
| 345 | break;
|
---|
| 346 | case MeanFilter :
|
---|
| 347 | return ("MeanFilter");
|
---|
| 348 | break;
|
---|
| 349 | case SumFilter :
|
---|
| 350 | return ("SumFilter");
|
---|
| 351 | break;
|
---|
| 352 | case GaussFilter :
|
---|
| 353 | return ("GaussFilter");
|
---|
| 354 | break;
|
---|
| 355 | case DiffFilter :
|
---|
| 356 | return ("DiffFilter");
|
---|
| 357 | break;
|
---|
| 358 | default :
|
---|
| 359 | return ("ErrorFilterKind");
|
---|
| 360 | break;
|
---|
| 361 | }
|
---|
| 362 | return("");
|
---|
| 363 | }
|
---|
| 364 |
|
---|
[1442] | 365 | SimpleFilter::SimpleFilter(int wsz, FilterKind fk, double a, double s)
|
---|
| 366 | {
|
---|
| 367 | if (wsz < 3) wsz = 3;
|
---|
| 368 | if (wsz%2 == 0) wsz++;
|
---|
| 369 | cout << "SimpleFilter::SimpleFilter() wsz= " << wsz
|
---|
[1454] | 370 | << " FilterKind=" << FilterKind2String(fk) << endl;
|
---|
[1442] | 371 | wsize = wsz;
|
---|
| 372 | totnscount = 0;
|
---|
| 373 | coef = new double[wsz];
|
---|
[1467] | 374 | for(int k=0; k<wsz; k++) coef[k] = 0.;
|
---|
[1476] | 375 | int kk;
|
---|
[1454] | 376 | switch (fk) {
|
---|
| 377 | case UserFilter :
|
---|
| 378 | throw ParmError("SimpleFilter: Error in filter Kind (UserFilter)!");
|
---|
[1467] | 379 | // break;
|
---|
[1454] | 380 | case MeanFilter :
|
---|
[1476] | 381 | for(kk=0; kk<wsz; kk++)
|
---|
[1454] | 382 | coef[kk] = a/wsize;
|
---|
| 383 | break;
|
---|
| 384 | case SumFilter :
|
---|
[1476] | 385 | for(kk=0; kk<wsz; kk++)
|
---|
[1454] | 386 | coef[kk] = a;
|
---|
| 387 | break;
|
---|
| 388 | case GaussFilter :
|
---|
[1476] | 389 | for(kk=-(wsz/2); kk<=(wsz/2); kk++)
|
---|
[1531] | 390 | coef[kk+(wsz/2)] = a*exp(-(double)(kk*kk)/(2*s*s));
|
---|
[1454] | 391 | break;
|
---|
| 392 | case DiffFilter :
|
---|
[1476] | 393 | for(kk=0; kk<wsz; kk++)
|
---|
[1454] | 394 | coef[kk] = -a/wsize;
|
---|
| 395 | coef[wsz/2+1] += 1.;
|
---|
| 396 | break;
|
---|
| 397 | default :
|
---|
| 398 | throw ParmError("SimpleFilter: Error in filter Kind (UnknownFilter)!");
|
---|
[1467] | 399 | // break;
|
---|
[1454] | 400 | }
|
---|
[1442] | 401 | }
|
---|
| 402 |
|
---|
[1454] | 403 | SimpleFilter::SimpleFilter(Vector const & vc)
|
---|
| 404 | {
|
---|
| 405 | int wsz = vc.Size();
|
---|
| 406 | if (wsz < 3) wsz = 3;
|
---|
| 407 | if (wsz%2 == 0) wsz++;
|
---|
| 408 | FilterKind fk = UserFilter;
|
---|
| 409 | cout << "SimpleFilter::SimpleFilter(Vector & vc) vc.Size()= "
|
---|
| 410 | << vc.Size() << " WSize=" << wsz
|
---|
| 411 | << " FilterKind=" << FilterKind2String(fk) << endl;
|
---|
| 412 | wsize = wsz;
|
---|
| 413 | totnscount = 0;
|
---|
| 414 | coef = new double[wsz];
|
---|
[1476] | 415 | int kk;
|
---|
| 416 | for(kk=0; kk<vc.Size(); kk++)
|
---|
[1454] | 417 | coef[kk] = vc(kk);
|
---|
[1476] | 418 | for(kk=vc.Size(); kk<wsz; kk++)
|
---|
[1454] | 419 | coef[kk] = 0.;
|
---|
| 420 | }
|
---|
| 421 |
|
---|
[1442] | 422 | SimpleFilter::~SimpleFilter()
|
---|
| 423 | {
|
---|
| 424 | delete[] coef;
|
---|
| 425 | }
|
---|
| 426 |
|
---|
[1762] | 427 | void SimpleFilter::PrintStatus(::ostream & os)
|
---|
[1443] | 428 | {
|
---|
| 429 | os << "\n ------------------------------------------------------ \n"
|
---|
| 430 | << " SimpleFilter::PrintStatus() - WindowSize=" << WSize()
|
---|
| 431 | << " FilterKind= " << Type() << endl;
|
---|
| 432 | TOIProcessor::PrintStatus(os);
|
---|
| 433 | os << " Coeff= " ;
|
---|
| 434 | for(int k=0; k<wsize; k++) os << coef[k] << " " ;
|
---|
| 435 | os << endl;
|
---|
[1454] | 436 | os << " ProcessedSampleCount=" << ProcessedSampleCount() << endl;
|
---|
[1443] | 437 | os << " ------------------------------------------------------ " << endl;
|
---|
| 438 | }
|
---|
| 439 |
|
---|
[1442] | 440 | void SimpleFilter::init() {
|
---|
| 441 | cout << "SimpleFilter::init" << endl;
|
---|
| 442 | declareInput("in");
|
---|
| 443 | declareOutput("out");
|
---|
[1443] | 444 | declareOutput("incopie");
|
---|
[1442] | 445 | name = "SimpleFilter";
|
---|
| 446 | // upExtra = 1;
|
---|
| 447 | }
|
---|
| 448 |
|
---|
| 449 | void SimpleFilter::run() {
|
---|
| 450 | // TOIManager* mgr = TOIManager::getManager();
|
---|
| 451 | int snb = getMinIn();
|
---|
| 452 | int sne = getMaxIn();
|
---|
| 453 |
|
---|
| 454 | bool fgout = checkOutputTOIIndex(0);
|
---|
[1443] | 455 | bool fgincopie = checkOutputTOIIndex(1);
|
---|
[1442] | 456 |
|
---|
| 457 | if (!checkInputTOIIndex(0)) {
|
---|
| 458 | cerr << " SimpleFilter::run() - Input TOI (in) not connected! "
|
---|
| 459 | << endl;
|
---|
| 460 | throw ParmError("SimpleFilter::run() Input TOI (in) not connected!");
|
---|
| 461 | }
|
---|
| 462 | if (!fgout) {
|
---|
| 463 | cerr << " SimpleFilter::run() - No Output TOI connected! "
|
---|
| 464 | << endl;
|
---|
| 465 | throw ParmError("SimpleFilter::run() No output TOI connected!");
|
---|
| 466 | }
|
---|
[1443] | 467 |
|
---|
| 468 | cout << " SimpleFilter::run() SNRange=" << snb << " - " << sne << endl;
|
---|
[1442] | 469 |
|
---|
| 470 |
|
---|
| 471 | try {
|
---|
[1443] | 472 | Timer tm("SimpleFilter::run()");
|
---|
[1442] | 473 | // Le debut
|
---|
| 474 | int wsz2 = wsize/2;
|
---|
| 475 | Vector vin(wsize);
|
---|
[1532] | 476 | TVector<uint_8> vfg(wsize);
|
---|
[1442] | 477 | int k;
|
---|
[1464] | 478 | for(k=0; k<wsize; k++)
|
---|
| 479 | getData(0, k+snb, vin(k%wsize), vfg(k%wsize));
|
---|
| 480 |
|
---|
[1442] | 481 | double mean = vin.Sum()/wsize;
|
---|
[1454] | 482 | for(k=wsz2+1; k<wsize; k++) {
|
---|
| 483 | vin(k) = mean;
|
---|
| 484 | vfg(k) = 0;
|
---|
| 485 | }
|
---|
| 486 | int knext;
|
---|
| 487 | bool fgfin = false;
|
---|
| 488 | // Boucle sur les sampleNum
|
---|
[1443] | 489 | for(k=0;k<=sne-snb;k++) {
|
---|
[1442] | 490 | double sortie = 0;
|
---|
[1467] | 491 | for(int ii=-wsz2; ii<=wsz2; ii++) {
|
---|
| 492 | sortie += vin((ii+k+wsize)%wsize)*coef[ii+wsz2];
|
---|
[1442] | 493 | }
|
---|
[1454] | 494 | putData(0,k+snb,sortie,vfg(k%wsize));
|
---|
| 495 | if (fgincopie)
|
---|
| 496 | putData(1, k+snb, vin(k%wsize), vfg(k%wsize));
|
---|
| 497 | knext = k+wsz2+1;
|
---|
[1464] | 498 | if (knext<=(sne-snb))
|
---|
| 499 | getData(0, knext+snb, vin(knext%wsize), vfg(knext%wsize));
|
---|
| 500 |
|
---|
[1454] | 501 | else {
|
---|
| 502 | if (!fgfin) {
|
---|
| 503 | mean = vin.Sum()/wsize;
|
---|
| 504 | fgfin = true;
|
---|
| 505 | }
|
---|
| 506 | vin(knext%wsize) = mean;
|
---|
| 507 | vfg(knext%wsize) = 0;
|
---|
| 508 | }
|
---|
| 509 | totnscount++;
|
---|
[1442] | 510 | } // Boucle sur les num-sample
|
---|
[1443] | 511 | cout << " SimpleFilter::run() - End of processing " << endl;
|
---|
[1442] | 512 | } // Bloc try
|
---|
| 513 |
|
---|
| 514 | catch (PException & exc) {
|
---|
| 515 | cerr << "SimpleFilter: Catched Exception " << (string)typeid(exc).name()
|
---|
| 516 | << "\n .... Msg= " << exc.Msg() << endl;
|
---|
| 517 | }
|
---|
[1454] | 518 | }
|
---|
[1442] | 519 |
|
---|
[1454] | 520 | // ---------------------------------------------------------------
|
---|
| 521 | // -------------------- Classe SimpleAdder -----------------------
|
---|
| 522 | // ---------------------------------------------------------------
|
---|
[1442] | 523 |
|
---|
[1454] | 524 | SimpleAdder::SimpleAdder(int nbinput)
|
---|
| 525 | : gains(nbinput)
|
---|
| 526 | {
|
---|
| 527 | if (nbinput < 1)
|
---|
| 528 | throw ParmError("SimpleAdder::SimpleAdder() NbInput < 1 !");
|
---|
| 529 | nb_input = nbinput;
|
---|
| 530 | for(int k=0; k<nb_input; k++) gains(k) = 1.;
|
---|
| 531 | totnscount = 0;
|
---|
[1442] | 532 | }
|
---|
[1454] | 533 |
|
---|
| 534 | SimpleAdder::~SimpleAdder()
|
---|
| 535 | {
|
---|
| 536 | }
|
---|
| 537 |
|
---|
| 538 | void SimpleAdder::SetGain(int num, double g)
|
---|
| 539 | {
|
---|
| 540 | if ((num < 0) || (num >= nb_input))
|
---|
| 541 | throw RangeCheckError("SimpleAdder::SetGain() Out of range input number!");
|
---|
| 542 | gains(num) = g;
|
---|
| 543 | return;
|
---|
| 544 | }
|
---|
| 545 |
|
---|
| 546 | double SimpleAdder::Gain(int num)
|
---|
| 547 | {
|
---|
| 548 | if ((num < 0) || (num >= nb_input))
|
---|
| 549 | throw RangeCheckError("SimpleAdder::Gain() Out of range input number!");
|
---|
| 550 | return gains(num);
|
---|
| 551 | }
|
---|
| 552 |
|
---|
[1762] | 553 | void SimpleAdder::PrintStatus(::ostream & os)
|
---|
[1454] | 554 | {
|
---|
| 555 | os << "\n ------------------------------------------------------ \n"
|
---|
| 556 | << " SimpleAdder::PrintStatus() - NbInput=" << NbInput() << endl;
|
---|
| 557 | TOIProcessor::PrintStatus(os);
|
---|
| 558 | os << " Gains= " ;
|
---|
| 559 | for(int k=0; k<nb_input; k++) os << gains(k) << " " ;
|
---|
| 560 | os << endl;
|
---|
| 561 | os << " ProcessedSampleCount=" << ProcessedSampleCount() << endl;
|
---|
| 562 | os << " ------------------------------------------------------ " << endl;
|
---|
| 563 | }
|
---|
| 564 |
|
---|
| 565 | void SimpleAdder::init() {
|
---|
| 566 | cout << "SimpleAdder::init NbInput=" << nb_input << endl;
|
---|
| 567 | char buff[32];
|
---|
| 568 | for(int k=0; k<nb_input; k++) {
|
---|
| 569 | sprintf(buff,"in%d", k);
|
---|
| 570 | declareInput(buff);
|
---|
| 571 | }
|
---|
| 572 |
|
---|
| 573 | declareOutput("out");
|
---|
| 574 | name = "SimpleAdder";
|
---|
| 575 | // upExtra = 1;
|
---|
| 576 | }
|
---|
| 577 |
|
---|
| 578 | void SimpleAdder::run() {
|
---|
| 579 | // TOIManager* mgr = TOIManager::getManager();
|
---|
| 580 | int snb = getMinIn();
|
---|
| 581 | int sne = getMaxIn();
|
---|
| 582 |
|
---|
| 583 | bool fgout = checkOutputTOIIndex(0);
|
---|
| 584 | string msg_err;
|
---|
| 585 | for(int ki=0;ki<nb_input;ki++) {
|
---|
| 586 | if (!checkInputTOIIndex(ki)) {
|
---|
| 587 | msg_err = "SimpleAdder::run() - Input TOI (" + getInName(ki) +
|
---|
| 588 | " not connected!";
|
---|
| 589 | cerr << msg_err << endl;
|
---|
| 590 | throw ParmError(msg_err);
|
---|
| 591 | }
|
---|
| 592 | }
|
---|
| 593 | if (!fgout) {
|
---|
| 594 | cerr << " SimpleAdder::run() - No Output TOI connected! "
|
---|
| 595 | << endl;
|
---|
| 596 | throw ParmError("SimpleAdder::run() No output TOI connected!");
|
---|
| 597 | }
|
---|
| 598 |
|
---|
| 599 | cout << " SimpleAdder::run() SNRange=" << snb << " - " << sne << endl;
|
---|
| 600 |
|
---|
| 601 |
|
---|
| 602 | try {
|
---|
| 603 | Timer tm("SimpleAdder::run()");
|
---|
| 604 | int k,i;
|
---|
| 605 | double out = 0.;
|
---|
[1464] | 606 | double valin = 0.;
|
---|
[1532] | 607 | uint_8 fgin = 0;
|
---|
| 608 | uint_8 fgout = 0;
|
---|
[1454] | 609 | for(k=snb;k<=sne;k++) {
|
---|
| 610 | out = 0;
|
---|
| 611 | fgout = 0;
|
---|
| 612 | for(i=0; i<nb_input; i++) {
|
---|
[1464] | 613 | getData(i, k, valin, fgin);
|
---|
| 614 | out += gains(i)*valin;
|
---|
| 615 | fgout = fgout | fgin;
|
---|
[1454] | 616 | }
|
---|
| 617 | putData(0,k,out,fgout);
|
---|
| 618 | totnscount++;
|
---|
| 619 | } // Boucle sur les num-sample
|
---|
| 620 | cout << " SimpleAdder::run() - End of processing " << endl;
|
---|
| 621 | } // Bloc try
|
---|
| 622 |
|
---|
| 623 | catch (PException & exc) {
|
---|
| 624 | cerr << "SimpleAdder: Catched Exception " << (string)typeid(exc).name()
|
---|
| 625 | << "\n .... Msg= " << exc.Msg() << endl;
|
---|
| 626 | }
|
---|
| 627 | }
|
---|
| 628 |
|
---|
[1479] | 629 | // ----------------------------------------------------------------------
|
---|
| 630 | // Classe SimpleFourierFilter : Filtre simple ds le domaine de Fourier
|
---|
| 631 | // ----------------------------------------------------------------------
|
---|
[1454] | 632 |
|
---|
[1479] | 633 | SimpleFourierFilter::SimpleFourierFilter(Vector const & vc)
|
---|
| 634 | {
|
---|
| 635 | ffcoef = vc;
|
---|
| 636 | wsize = (ffcoef.Size()-1)*2;
|
---|
| 637 | if (wsize < 16)
|
---|
| 638 | throw ParmError("SimpleFourierFilter::SimpleFourierFilter() WSize<16 !");
|
---|
[1483] | 639 | KeepSpectra("spectra.ppf", 0);
|
---|
[1484] | 640 | ComputeMeanSpectra(false);
|
---|
| 641 | totnscount = 0;
|
---|
| 642 | totnbblock = 0;
|
---|
[1479] | 643 | }
|
---|
| 644 |
|
---|
| 645 | SimpleFourierFilter::~SimpleFourierFilter()
|
---|
| 646 | {
|
---|
| 647 | }
|
---|
| 648 |
|
---|
| 649 |
|
---|
[1762] | 650 | void SimpleFourierFilter::PrintStatus(::ostream & os)
|
---|
[1479] | 651 | {
|
---|
| 652 | os << "\n ------------------------------------------------------ \n"
|
---|
| 653 | << " SimpleFourierFilter::PrintStatus() - WindowSize="
|
---|
| 654 | << WSize() << endl;
|
---|
| 655 | TOIProcessor::PrintStatus(os);
|
---|
[1484] | 656 | os << " Coeff (Size= " << ffcoef.Size() << "): " << endl;
|
---|
| 657 | for(int i=0; i<16; i++) {
|
---|
| 658 | os << ffcoef(i) << " " ;
|
---|
| 659 | if (i == 7) os << endl;
|
---|
| 660 | }
|
---|
| 661 | os << " .... " << endl;
|
---|
| 662 | os << " ProcessedSampleCount=" << ProcessedSampleCount()
|
---|
| 663 | << " NbFFTBlocks= " << totnbblock << endl;
|
---|
[1479] | 664 | os << " ------------------------------------------------------ " << endl;
|
---|
| 665 | }
|
---|
| 666 |
|
---|
| 667 | void SimpleFourierFilter::init() {
|
---|
| 668 | cout << "SimpleFourierFFilter::init" << endl;
|
---|
| 669 | declareInput("in");
|
---|
| 670 | declareOutput("out");
|
---|
| 671 | declareOutput("incopie");
|
---|
| 672 | name = "SimpleFourierFilter";
|
---|
| 673 | // upExtra = 1;
|
---|
| 674 | }
|
---|
| 675 |
|
---|
| 676 |
|
---|
| 677 | void SimpleFourierFilter::run() {
|
---|
| 678 | // TOIManager* mgr = TOIManager::getManager();
|
---|
| 679 | int snb = getMinIn();
|
---|
| 680 | int sne = getMaxIn();
|
---|
| 681 |
|
---|
| 682 | bool fgout = checkOutputTOIIndex(0);
|
---|
| 683 | bool fgincopie = checkOutputTOIIndex(1);
|
---|
| 684 |
|
---|
| 685 | if (!checkInputTOIIndex(0)) {
|
---|
| 686 | cerr << " SimpleFourierFilter::run() - Input TOI (in) not connected! "
|
---|
| 687 | << endl;
|
---|
| 688 | throw ParmError("SimpleFourierFilter::run() Input TOI (in) not connected!");
|
---|
| 689 | }
|
---|
| 690 |
|
---|
[1484] | 691 | // ---- On peut utiliser cette classe pour calculer un spectre de Fourier ----
|
---|
| 692 | // if (!fgout) {
|
---|
| 693 | // cerr << " SimpleFourierFilter::run() - No Output TOI connected! "
|
---|
| 694 | // << endl;
|
---|
| 695 | // throw ParmError("SimpleFourierFilter::run() No output TOI connected!");
|
---|
| 696 | // }
|
---|
| 697 |
|
---|
[1479] | 698 | cout << " SimpleFourierFilter::run() SNRange=" << snb << " - " << sne << endl;
|
---|
| 699 |
|
---|
| 700 |
|
---|
| 701 | try {
|
---|
| 702 | Timer tm("SimpleFourierFilter::run()");
|
---|
| 703 | // Le debut
|
---|
| 704 | Vector vin(wsize);
|
---|
| 705 | Vector vout(wsize);
|
---|
[1532] | 706 | TVector<uint_8> vfg(wsize);
|
---|
[1483] | 707 | TVector< complex<r_8> > vfft, vfftmean;
|
---|
[1484] | 708 | Vector meanpowerspectra;
|
---|
[1479] | 709 | TVector< complex<r_8> > zcoef(ffcoef.Size());
|
---|
| 710 | zcoef = ffcoef;
|
---|
| 711 |
|
---|
| 712 |
|
---|
| 713 | FFTPackServer ffts;
|
---|
| 714 | ffts.setNormalize(true);
|
---|
| 715 |
|
---|
[1483] | 716 | POutPersist pout(outppfname);
|
---|
| 717 |
|
---|
[1479] | 718 | int k,i,klast;
|
---|
| 719 | int nks = 0;
|
---|
| 720 | klast = snb-1;
|
---|
[1484] | 721 | totnbblock = 0;
|
---|
[1483] | 722 | // Boucle sur les sampleNum
|
---|
[1479] | 723 | // 1er partie, on traite par paquets de wsize
|
---|
| 724 | for(k=snb;k<=sne-wsize+1;k+=wsize) {
|
---|
| 725 | for(i=0; i<wsize; i++)
|
---|
| 726 | getData(0, k+i, vin(i), vfg(i));
|
---|
| 727 | ffts.FFTForward(vin, vfft);
|
---|
[1484] | 728 | if (c_meanspectra) { // Compute mean-spectra
|
---|
| 729 | if (totnbblock == 0) {
|
---|
| 730 | vfftmean = vfft;
|
---|
| 731 | meanpowerspectra.ReSize(vfft.Size());
|
---|
| 732 | for(i=0; i<meanpowerspectra.Size(); i++)
|
---|
| 733 | meanpowerspectra(i) = sqrt(vfft(i).real()*vfft(i).real() +
|
---|
| 734 | vfft(i).imag()*vfft(i).imag() );
|
---|
| 735 | }
|
---|
| 736 | else {
|
---|
| 737 | vfftmean += vfft;
|
---|
| 738 | for(i=0; i<meanpowerspectra.Size(); i++)
|
---|
| 739 | meanpowerspectra(i) += sqrt(vfft(i).real()*vfft(i).real() +
|
---|
| 740 | vfft(i).imag()*vfft(i).imag() );
|
---|
| 741 | }
|
---|
| 742 | }
|
---|
| 743 | totnbblock++;
|
---|
[1479] | 744 | if (nks < nb_keep) {
|
---|
[1483] | 745 | TVector< complex<r_8> > vfftcopie;
|
---|
| 746 | vfftcopie = vfft;
|
---|
[1484] | 747 | string nomvfft = "spectra" + (string)MuTyV(nks);
|
---|
[1483] | 748 | pout.PutObject(vfftcopie, nomvfft);
|
---|
[1479] | 749 | nks++;
|
---|
| 750 | }
|
---|
[1484] | 751 | if (fgout) {
|
---|
| 752 | vfft.MulElt(zcoef);
|
---|
| 753 | ffts.FFTBackward(vfft, vout);
|
---|
| 754 | }
|
---|
| 755 | for(i=0; i<wsize; i++) {
|
---|
| 756 | if (fgout)
|
---|
| 757 | putData(0,k+i,vout(i),vfg(i));
|
---|
| 758 | if (fgincopie)
|
---|
[1479] | 759 | putData(1, k+i, vin(i), vfg(i));
|
---|
[1484] | 760 | }
|
---|
[1479] | 761 | klast+=wsize;
|
---|
| 762 | totnscount+=wsize;
|
---|
| 763 | }
|
---|
| 764 |
|
---|
| 765 |
|
---|
| 766 | // 2eme partie, on traite la fin du bloc d'echantillons si necessaire
|
---|
| 767 | double inval;
|
---|
[1532] | 768 | uint_8 inflg;
|
---|
[1479] | 769 | if (klast < sne)
|
---|
| 770 | for(k=klast+1; k<=sne; k++) {
|
---|
| 771 | getData(0, k, inval, inflg);
|
---|
[1484] | 772 | if (fgout) putData(0, k, inval, inflg);
|
---|
[1479] | 773 | if (fgincopie)
|
---|
| 774 | putData(1, k, inval, inflg);
|
---|
| 775 | totnscount++;
|
---|
| 776 | }
|
---|
[1483] | 777 |
|
---|
[1484] | 778 | if (c_meanspectra) {
|
---|
| 779 | vfftmean /= complex<r_8>((r_8)totnbblock, 0.);
|
---|
| 780 | pout.PutObject(vfftmean, "meanspectra");
|
---|
| 781 | meanpowerspectra /= (r_8)totnbblock;
|
---|
| 782 | pout.PutObject(vfftmean, "meanpowerspectra");
|
---|
| 783 | }
|
---|
| 784 | pout.PutObject(ffcoef, "fourierfilter");
|
---|
[1483] | 785 |
|
---|
[1484] | 786 | cout << " SimpleFourierFilter::run() - End of processing "
|
---|
| 787 | << " NbFFTBlocks= " << totnbblock << endl;
|
---|
[1479] | 788 | } // Bloc try
|
---|
| 789 |
|
---|
| 790 | catch (PException & exc) {
|
---|
| 791 | cerr << "SimpleFourierFilter: Catched Exception " << (string)typeid(exc).name()
|
---|
| 792 | << "\n .... Msg= " << exc.Msg() << endl;
|
---|
| 793 | }
|
---|
| 794 | }
|
---|
| 795 |
|
---|
[1467] | 796 | // ---------------------------------------------------------------
|
---|
| 797 | // -------------------- Classe SimpleFanOut -----------------------
|
---|
| 798 | // ---------------------------------------------------------------
|
---|
[1454] | 799 |
|
---|
[1467] | 800 | SimpleFanOut::SimpleFanOut(int nbinput, int mfanout)
|
---|
| 801 | {
|
---|
| 802 | if (nbinput < 1)
|
---|
| 803 | throw ParmError("SimpleFanOut::SimpleFanOut() NbInput < 1 !");
|
---|
| 804 | if (mfanout < 1)
|
---|
| 805 | throw ParmError("SimpleFanOut::SimpleFanOut() M_FanOut < 1 !");
|
---|
| 806 |
|
---|
| 807 | nb_input = nbinput;
|
---|
| 808 | m_fanout = mfanout;
|
---|
| 809 | totnscount = 0;
|
---|
| 810 | }
|
---|
| 811 |
|
---|
| 812 | SimpleFanOut::~SimpleFanOut()
|
---|
| 813 | {
|
---|
| 814 | }
|
---|
| 815 |
|
---|
| 816 |
|
---|
[1762] | 817 | void SimpleFanOut::PrintStatus(::ostream & os)
|
---|
[1467] | 818 | {
|
---|
| 819 | os << "\n ------------------------------------------------------ \n"
|
---|
| 820 | << " SimpleFanOut::PrintStatus() - NbInput=" << NbInput()
|
---|
| 821 | << " M_FanOut=" << MFanOut() << endl;
|
---|
| 822 | TOIProcessor::PrintStatus(os);
|
---|
| 823 | os << endl;
|
---|
| 824 | os << " ProcessedSampleCount=" << ProcessedSampleCount() << endl;
|
---|
| 825 | os << " ------------------------------------------------------ " << endl;
|
---|
| 826 | }
|
---|
| 827 |
|
---|
| 828 | void SimpleFanOut::init() {
|
---|
| 829 | cout << "SimpleFanOut::init NbInput=" << nb_input << endl;
|
---|
| 830 | char buff[64];
|
---|
| 831 | for(int k=0; k<nb_input; k++) {
|
---|
| 832 | sprintf(buff,"in%d", k);
|
---|
| 833 | declareInput(buff);
|
---|
| 834 | for(int j=0; j<m_fanout; j++) {
|
---|
| 835 | sprintf(buff,"out%d_%d", k, j);
|
---|
| 836 | declareOutput(buff);
|
---|
| 837 | }
|
---|
| 838 | }
|
---|
| 839 |
|
---|
| 840 | name = "SimpleFanOut";
|
---|
| 841 | // upExtra = 1;
|
---|
| 842 | }
|
---|
| 843 |
|
---|
| 844 | void SimpleFanOut::run() {
|
---|
| 845 | // TOIManager* mgr = TOIManager::getManager();
|
---|
| 846 | int snb = getMinIn();
|
---|
| 847 | int sne = getMaxIn();
|
---|
| 848 |
|
---|
| 849 | TVector<int_4> in_index(nb_input);
|
---|
| 850 | TMatrix<int_4> out_index(nb_input, m_fanout);
|
---|
| 851 | in_index = -1;
|
---|
| 852 | out_index = -1;
|
---|
| 853 | int nbconin = 0;
|
---|
| 854 | char buff[64];
|
---|
| 855 | for(int ki=0;ki<nb_input;ki++) {
|
---|
| 856 | sprintf(buff,"in%d", ki);
|
---|
| 857 | int idx = getInputTOIIndex(buff);
|
---|
| 858 | if (!checkInputTOIIndex(idx)) continue;
|
---|
| 859 | nbconin++;
|
---|
| 860 | in_index(ki) = idx;
|
---|
| 861 | bool fgout = false;
|
---|
| 862 | for(int jo=0; jo<m_fanout; jo++) {
|
---|
| 863 | sprintf(buff,"out%d_%d", ki, jo);
|
---|
| 864 | int odx = getOutputTOIIndex(buff);
|
---|
| 865 | if (checkOutputTOIIndex(odx)) {
|
---|
| 866 | out_index(ki, jo) = odx;
|
---|
| 867 | fgout = true;
|
---|
| 868 | }
|
---|
| 869 | }
|
---|
| 870 | if (!fgout) {
|
---|
| 871 | string msg_err =
|
---|
| 872 | "SimpleFanOut::run() - No connected Output for Input TOI ("
|
---|
| 873 | + getInName(ki) + ") !";
|
---|
| 874 | cerr << msg_err << endl;
|
---|
| 875 | throw ParmError(msg_err);
|
---|
| 876 | }
|
---|
| 877 | }
|
---|
| 878 | if (nbconin == 0) {
|
---|
| 879 | cerr << " SimpleFanOut::run() - No Input TOI connected! "
|
---|
| 880 | << endl;
|
---|
| 881 | throw ParmError("SimpleFanOut::run() No Inout TOI connected!");
|
---|
| 882 | }
|
---|
| 883 |
|
---|
| 884 | /*
|
---|
| 885 | for(int ki=0;ki<nb_input;ki++) {
|
---|
| 886 | cout << " SimpleFanOut::run() In(" << ki << ") Index=" << in_index(ki)
|
---|
| 887 | << " Name=" << getInName(in_index(ki)) << endl;
|
---|
| 888 | for(int jo=0; jo<m_fanout; jo++)
|
---|
| 889 | cout << " .... Out(" << ki << "," << jo << ") Index=" << out_index(ki, jo)
|
---|
| 890 | << " Name=" << getOutName(out_index(ki, jo)) << endl;
|
---|
| 891 | }
|
---|
| 892 | */
|
---|
| 893 | cout << " SimpleFanOut::run() SNRange=" << snb << " - " << sne << endl;
|
---|
| 894 |
|
---|
| 895 |
|
---|
| 896 | try {
|
---|
| 897 | Timer tm("SimpleFanOut::run()");
|
---|
| 898 | double valin = 0.;
|
---|
[1532] | 899 | uint_8 fgin = 0;
|
---|
[1467] | 900 | for(int k=snb;k<=sne;k++) {
|
---|
| 901 | for(int i=0;i<nb_input;i++) {
|
---|
| 902 | if (in_index(i) < 0) continue;
|
---|
| 903 | valin = 0;
|
---|
| 904 | fgin = 0;
|
---|
| 905 | getData(in_index(i), k, valin, fgin);
|
---|
| 906 | for(int j=0; j<m_fanout; j++) {
|
---|
| 907 | if (out_index(i, j) < 0) continue;
|
---|
| 908 | putData(out_index(i, j), k, valin, fgin);
|
---|
| 909 | }
|
---|
| 910 | }
|
---|
| 911 | totnscount++;
|
---|
| 912 | } // Boucle sur les num-sample
|
---|
| 913 | cout << " SimpleFanOut::run() - End of processing "
|
---|
| 914 | << " ProcessedSampleCount=" << ProcessedSampleCount() << endl;
|
---|
| 915 | } // Bloc try
|
---|
| 916 |
|
---|
| 917 | catch (PException & exc) {
|
---|
| 918 | cerr << "SimpleFanOut: Catched Exception " << (string)typeid(exc).name()
|
---|
| 919 | << "\n .... Msg= " << exc.Msg() << endl;
|
---|
| 920 | }
|
---|
| 921 | }
|
---|
| 922 |
|
---|
| 923 |
|
---|
| 924 |
|
---|