Changeset 13424
- Timestamp:
- 04/24/12 11:02:49 (13 years ago)
- Location:
- fact/tools/rootmacros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/rootmacros/zerosearch.C
r12682 r13424 3 3 4 4 // searches for zero crossings in a given vector of floats 5 // for zero crossings in falling edge 5 // for zero crossings in falling edge 6 6 // give edge = -1 7 // 8 // 7 // 8 // 9 9 // returns pointer to vetctor of ints 10 10 11 11 vector<Region> *zerosearch( 12 13 int edge, // search for transitionson rising edge=1, -1:falling14 unsigned int step,// search in steps of step15 12 vector<float> &input, 13 int edge, // search on rising edge=1, -1:falling 14 unsigned int step, // search in steps of step 15 int VerbosityLevel 16 16 ){ 17 17 18 18 vector<Region> * ZeroPositions = new vector<Region>; 19 Region currentRegion = {0, 0, 0, 0.0 };20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 19 Region currentRegion = {0, 0, 0, 0.0, 0}; 20 if (step < 1){ 21 if (VerbosityLevel > 0) 22 cout << "zerosearch - stepsize=" << step 23 << " is smaller than 1. returning." << endl; 24 return ZeroPositions; 25 } 26 if (input.size() < step){ 27 if (VerbosityLevel > 0) 28 cout << "zerosearch - input-vector.size()="<< input.size() 29 << " is smaller than stepsize=" << step 30 << "returning." << endl; 31 return ZeroPositions; 32 } 33 34 if (edge > 0) // search for zero-x-ings on the rising edge 35 { 36 for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step) 37 { 38 if (input[sl] > 0.0) // can't be a rising 0-x-ing 39 { 40 continue; 41 } 42 if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0 43 { 44 currentRegion.begin = sl; 45 currentRegion.end = sl+step; 46 ZeroPositions->push_back(currentRegion); 47 } 48 } 49 } 50 else if (edge < 0) // search for zero-x-ings on the falling edge 51 { 52 for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step) 53 { 54 if (input[sl] < 0.0) // can't be a falling 0-x-ing 55 { 56 continue; 57 } 58 if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0 59 { 60 currentRegion.begin = sl; 61 currentRegion.end = sl+step; 62 ZeroPositions->push_back(currentRegion); 63 } 64 } 65 66 } 67 else // search for zero-x-ings on both esges 68 { 69 for (unsigned int sl = 0 ; sl < (input.size()-step) ; sl+=step) 70 { 71 if (input[sl] * input[sl+step] <= 0.0) // 0-x-ing or both are 0 72 { 73 currentRegion.begin = sl; 74 currentRegion.end = sl+step; 75 ZeroPositions->push_back(currentRegion); 76 } 77 } 78 } 79 80 81 return ZeroPositions; 82 82 } 83 83 84 84 size_t ShiftRegionBy(vector<Region> &src, 85 86 87 { 88 vector<Region>::iterator it;89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 85 int Shift, 86 int VerbosityLevel) 87 { 88 vector<Region>::iterator it; 89 // I copy code here ... not good, but I hope nobody is giving VL > 10 ever... 90 if (VerbosityLevel > 10){ 91 for (it = src.begin() ; it < src.end() ; it++){ 92 cout << " it->begin="<< it->begin; 93 it->begin += Shift; 94 cout << "--> shifted="<< it->begin << endl; 95 cout << " it->end="<< it->end; 96 it->end += Shift; 97 cout << "--> shifted="<< it->end << endl; 98 cout << " it->maxPos="<< it->maxPos; 99 it->maxPos += Shift; 100 cout << "--> shifted="<< it->maxPos << endl; 101 } 102 return src.size(); 103 } 104 105 for (it = src.begin() ; it < src.end() ; it++){ 106 it->begin += Shift; 107 it->end += Shift; 108 it->maxPos += Shift; 109 } 110 return src.size(); 111 111 } 112 112 113 113 size_t EnlargeRegion(vector<Region> &src, 114 115 116 117 { 118 vector<Region>::iterator it;119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 114 int Left, 115 int Right, 116 int VerbosityLevel) 117 { 118 vector<Region>::iterator it; 119 // I copy code here ... not good, but I hope nobody is giving VL > 10 ever... 120 if (VerbosityLevel > 10){ 121 for (it = src.begin() ; it < src.end() ; it++){ 122 cout << " it->begin="<< it->begin; 123 it->begin -= Left; 124 cout << "--> enlarged="<< it->begin << endl; 125 cout << " it->end="<< it->end; 126 it->end += Right; 127 cout << "--> enlarged="<< it->end << endl; 128 } 129 return src.size(); 130 } 131 132 133 for (it = src.begin() ; it < src.end() ; it++){ 134 it->begin -= Left; 135 it->end += Right; 136 } 137 return src.size(); 138 138 139 139 } … … 141 141 #include <limits> 142 142 size_t findAbsMaxInRegions( 143 144 145 146 { 147 vector<Region>::iterator reg;148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 143 vector<Region> ®ions, 144 vector<float> &data, 145 int VerbosityLevel) 146 { 147 vector<Region>::iterator reg; 148 for (reg = regions.begin() ; reg < regions.end() ; reg++){ 149 reg->maxVal=-numeric_limits<float>::max(); 150 // 1st check if both ends of the region are in the data-vector 151 if (reg->begin < 0) reg->begin=0; 152 if ((unsigned int)reg->end > data.size()-1) reg->end=data.size()-1; 153 154 // TODO or TOTHINKOF: 155 // Region might overlap ... I don't care .. I just search 156 // in a later step Maxima at the same Positions can be removed... 157 // of course this means, some searches were needless ... 158 //cout << "searching from " << reg->begin << " to " << reg->end << endl; 159 for (unsigned int pos=reg->begin; pos <= (unsigned int)reg->end; pos++){ 160 if (data[pos] > reg->maxVal){ 161 reg->maxVal = data[pos]; 162 reg->maxPos = pos; 163 } 164 } 165 if (VerbosityLevel > 3) { 166 cout << "findAbsMaxInRegions - found Max at:" 167 << reg->maxPos << " with Value:" << reg->maxVal << endl; 168 } 169 } 170 return regions.size(); 171 171 } 172 172 … … 177 177 178 178 size_t removeEqualMaxima( 179 180 181 { 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 179 vector<Region> ®ions, 180 int VerbosityLevel) 181 { 182 if (VerbosityLevel > 2){ 183 cout << "removeEqualMaxima:" << endl; 184 cout << "region before contains:" << endl; 185 for (unsigned int i=0; i<regions.size(); i++){ 186 cout << i <<"\t"; 187 cout << regions[i].begin <<"\t"; 188 cout << regions[i].end <<"\t"; 189 cout << regions[i].maxPos <<"\t"; 190 cout << regions[i].maxVal <<"\t"; 191 cout << endl; 192 } 193 } 194 195 vector<Region>::iterator it; 196 it = unique (regions.begin(), regions.end() , compMaxPosOfRegions); 197 regions.resize( it - regions.begin() ); 198 199 if (VerbosityLevel > 1){ 200 cout << "region now contains:" << endl; 201 for (unsigned int i=0; i<regions.size(); i++){ 202 cout << i <<"\t"; 203 cout << regions[i].begin <<"\t"; 204 cout << regions[i].end <<"\t"; 205 cout << regions[i].maxPos <<"\t"; 206 cout << regions[i].maxVal <<"\t"; 207 cout << endl; 208 } 209 } 210 return regions.size(); 211 211 } 212 212 213 213 size_t removeRegionOnFallingEdge( 214 215 216 214 vector<Region> ®ions, 215 unsigned int FallingEdgeWidth, 216 int VerbosityLevel) 217 217 { 218 218 if ( FallingEdgeWidth < 1){ … … 224 224 } 225 225 } 226 227 228 229 230 226 if (regions.size() < 1){ 227 if (VerbosityLevel > 3) 228 cout << "removeRegionOnFallingEdge: source vector empty." << endl; 229 return 0; 230 } 231 231 232 232 vector<Region>::reverse_iterator it = regions.rbegin(); … … 234 234 { 235 235 if (VerbosityLevel >10) 236 cout << it->maxPos << "\t" << (it+1)->maxPos << "\t" << it->maxPos - (it+1)->maxPos << endl; 236 cout << it->maxPos << "\t" << (it+1)->maxPos << "\t" << it->maxPos - (it+1)->maxPos << endl; 237 237 238 238 if ( it->maxPos - (it+1)->maxPos < (int)FallingEdgeWidth) { … … 250 250 251 251 size_t removeRegionWithMaxOnEdge( 252 253 254 255 { 256 257 258 259 260 261 262 263 264 265 266 267 252 vector<Region> ®ions, 253 unsigned int EdgeWidth, 254 int VerbosityLevel) 255 { 256 if (EdgeWidth < 1){ 257 if (VerbosityLevel > 0){ 258 cout << "removeReginWithMaximaOnEdge: EdgeWidth < 1" << endl; 259 cout << "EdgeWidth=" << EdgeWidth << endl; 260 cout << "returning." << endl; 261 return regions.size(); 262 } 263 } 264 265 vector<Region>::iterator it = regions.begin(); 266 while( it != regions.end() ) 267 { 268 268 // cout << it->begin << "\t"; 269 269 // cout << it->maxPos << "\t"; … … 271 271 // cout << it->maxVal << endl; 272 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 273 if (it->maxPos < (int)(it->begin+EdgeWidth)) { 274 if (VerbosityLevel > 3) 275 cout << "erasing Region(max@left edge) " << it->maxPos << endl; 276 it = regions.erase( it ) ; 277 //++it; 278 }else if (it->maxPos > (int)(it->end-EdgeWidth)) { 279 if (VerbosityLevel > 3) 280 cout << "erasing Region(max@right edge) " << it->maxPos << endl; 281 it = regions.erase( it ) ; 282 //++it; 283 }else 284 ++it; 285 286 } 287 288 return regions.size(); 289 289 } 290 290 291 291 size_t removeMaximaBelow( 292 293 294 292 vector<Region> ®ions, 293 float threshold, 294 int VerbosityLevel) 295 295 { 296 296 // if (threshold < 0){ … … 302 302 // } 303 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 304 vector<Region>::iterator it = regions.begin(); 305 while( it != regions.end() ) 306 { 307 if (it->maxVal < threshold ) { 308 if (VerbosityLevel > 3){ 309 cout << "removing max " << it->maxVal << "\t"; 310 cout << " @ " << it->maxPos << "\t"; 311 cout << endl; 312 } 313 it = regions.erase( it ) ; 314 }else 315 ++it; 316 } 317 318 return regions.size(); 319 319 } 320 320 321 321 size_t removeMaximaAbove( 322 323 324 325 { 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 322 vector<Region> ®ions, 323 float threshold, 324 int VerbosityLevel) 325 { 326 if (threshold < 0){ 327 if (VerbosityLevel > 0) 328 cout << "removeMaximaAbove: threshold < 0" << endl; 329 cout << "threshold=" << threshold << endl; 330 cout << "returning." << endl; 331 return regions.size(); 332 } 333 334 vector<Region>::iterator it = regions.begin(); 335 while( it != regions.end() ) 336 { 337 if (it->maxVal > threshold ) { 338 if (VerbosityLevel > 3){ 339 cout << "removing max " << it->maxVal << "\t"; 340 cout << " @ " << it->maxPos << "\t"; 341 cout << endl; 342 } 343 it = regions.erase( it ) ; 344 }else 345 ++it; 346 } 347 348 return regions.size(); 349 349 } 350 350 351 351 Region FindAbsMax( 352 353 354 { 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 352 vector<Region> ®ions, 353 int VerbosityLevel) 354 { 355 Region AbsMax; 356 AbsMax.begin = -1; 357 AbsMax.maxPos = -1; 358 AbsMax.end = -1; 359 AbsMax.maxVal=-numeric_limits<float>::max(); 360 if (regions.size() < 1) 361 return AbsMax; 362 363 for (vector<Region>::iterator it = regions.begin(); it < regions.end(); ++it) 364 { 365 if (it->maxVal > AbsMax.maxVal ) { 366 AbsMax = *it; 367 } 368 } 369 if (VerbosityLevel > 5){ 370 AbsMax.begin +=0; 371 } 372 return AbsMax; 373 373 } 374 374 … … 376 376 ////////////// old Version of the code 377 377 /* 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 378 for (unsigned int sl = step; sl < input.size(); sl+=step){ 379 if (input[sl] * input[sl-] < 0 || input[sl]==0.0 ){ // sign change --> zero crossing OR really zero 380 381 if ( (input[sl-1] - input[sl]) * edge < 0){ // this is the crossing the user wanted 382 383 // check if we go lower than a certain limit in the next few slices 384 for ( int lala=0; lala<post; lala++){ 385 if (input[sl+lala] > 1.5) { 386 zeroPositions->push_back(sl); 387 sl += lala; 388 break; 389 } 390 } 391 392 } else if ( (input[sl-1] - input[sl]) * edge > 0){ // this is the zero x-ing the user did not want 393 394 // do nothing 395 396 } else { // sl and sl-1 are equal .. don't know waht do to... 397 398 } 399 400 } 401 402 } // end of loop over slices - between pre and post 403 403 404 404 */ 405 406 407 size_t findTimeOfHalfMaxLeft( 408 vector<Region> ®ions, 409 vector<float> &data, 410 float baseline, 411 int beginRisingEdge, 412 int endRisingEdge, 413 int VerbosityLevel) 414 { 415 float pulse_size = 0; // 416 float thr = 0; 417 418 //int begin = beginRisingEdge; 419 int end = endRisingEdge; 420 int counter = 0; 421 // local vars for line fitting 422 float xmean = 0.0; 423 float ymean = 0.0; 424 float cov = 0.0; // empiric covarianve between x and y 425 float var = 0.0; // empiric variance of x 426 // result of line fitting 427 float slope = 0.0; 428 float intercept = 0.0; 429 // result of this function -- the position of the half rising edge 430 float pos_of_thr_Xing = 0.0; 431 int result = 0; 432 433 vector<Region>::iterator reg; 434 for (reg = regions.begin() ; reg < regions.end() ; reg++){ 435 436 // check if linear falling edge is completely in pipeline 437 // if not --> delete 438 if ( reg->maxPos - end < 0 ) 439 { 440 // delete this region from vector<Region> 441 reg = regions.erase( reg ) ; 442 --reg; 443 continue; 444 } 445 446 // The maximum was probably found using smoothed data, 447 // so I read the value at the position of the maximum from the data 448 // again. So I rely on a well defined maxPos. 449 if (VerbosityLevel > 1) cout << "## baseline: " << baseline << endl; 450 pulse_size = data[reg->maxPos] - baseline; 451 if (VerbosityLevel > 1) cout << "## pulse_size: " << pulse_size << endl; 452 thr = pulse_size / 2. + baseline; 453 if (VerbosityLevel > 1) cout << "## thr: " << thr << endl; 454 455 // I think 5 slices left of the max there begins the rising edge 456 // and I think the rising edge is about 6 slices long. 457 // but these numbers are input as parameters 458 // beginRisingEdge & 459 // endRisingEdge 460 461 // I fit a linear function to the falling edge 462 // ALARM check for out of range values... 463 464 465 for (int slice=reg->maxPos - beginRisingEdge; 466 slice > reg->maxPos - endRisingEdge; --slice) 467 { 468 xmean += slice; 469 ymean += data[slice]; 470 counter++; 471 } 472 // xmean /= beginRisingEdge - endRisingEdge; 473 // ymean /= beginRisingEdge - endRisingEdge; 474 xmean /= counter; 475 ymean /= counter; 476 if (VerbosityLevel > 1) cout << "## xmean: " << xmean << endl; 477 if (VerbosityLevel > 1) cout << "## ymean: " << ymean << endl; 478 479 for (int slice=reg->maxPos - beginRisingEdge; 480 slice > reg->maxPos - endRisingEdge; --slice) 481 { 482 cov = (data[slice] - ymean) * (slice - xmean); 483 var = (slice - xmean) * (slice - xmean); 484 } 485 if (VerbosityLevel > 1) cout << "## cov: " << cov << endl; 486 if (VerbosityLevel > 1) cout << "## var: " << var << endl; 487 488 slope = cov / var; 489 intercept = ymean - slope * xmean; 490 // now calculate, where the fittet line crosses the threshold 491 pos_of_thr_Xing = (thr - intercept) / slope; 492 result = (int)(pos_of_thr_Xing + 0.5); 493 494 495 if (VerbosityLevel > 0) 496 { 497 cout << "findTimeOfHalfMaxLeft() is still in debugging phase:" << endl; 498 cout << "please edit the code in oder to suppress this output:" << endl; 499 cout << "threshold: " << thr << endl; 500 cout << "slope: " << slope << " [mV/timeslice]" << endl; 501 cout << "intercept: " << intercept << "[mV]" << endl; 502 cout << "position where line crosses threshold " << pos_of_thr_Xing << endl; 503 cout << "converted to slice number " << result << endl; 504 505 } 506 507 reg->halfRisingEdgePos = result; 508 reg->slopeOfRisingEdge = slope; 509 } 510 return regions.size(); 511 } -
fact/tools/rootmacros/zerosearch.h
r12391 r13424 6 6 7 7 vector<Region> *zerosearch( 8 9 10 11 8 vector<float> &input, 9 int edge = 1, // search for transitions on rising edge=1, -1:falling 10 unsigned int step = 4, // search in steps of step 11 int VerbosityLevel = 1 // 1 means ... just normal warings are output. 12 12 ); 13 13 14 14 size_t ShiftRegionBy(vector<Region> &src, 15 16 15 int Shift, 16 int VerbosityLevel=0); 17 17 18 18 size_t EnlargeRegion(vector<Region> &src, 19 20 21 19 int Left, 20 int Right, 21 int VerbosityLevel=0); 22 22 23 23 size_t findAbsMaxInRegions( 24 25 26 24 vector<Region> ®ions, 25 vector<float> &data, 26 int VerbosityLevel=0); 27 27 28 28 bool compMaxPosOfRegions (Region a, Region b); 29 29 30 30 size_t removeEqualMaxima( 31 32 31 vector<Region> ®ions, 32 int VerbosityLevel=0); 33 33 34 34 size_t removeRegionOnFallingEdge( … … 39 39 40 40 size_t removeRegionWithMaxOnEdge( 41 42 43 41 vector<Region> ®ions, 42 unsigned int EdgeWidth=3, 43 int VerbosityLevel=0); 44 44 45 45 size_t removeMaximaBelow( 46 47 48 46 vector<Region> ®ions, 47 float threshold = 2.0, 48 int VerbosityLevel=0); 49 49 50 50 size_t removeMaximaAbove( 51 52 53 51 vector<Region> ®ions, 52 float threshold= 14.0, 53 int VerbosityLevel=0); 54 54 55 55 Region FindAbsMax( … … 57 57 int VerbosityLevel=0); 58 58 59 size_t findTimeOfHalfMaxLeft( 60 vector<Region> ®ions, 61 vector<float> &data, 62 float baseline = -0.5, 63 int beginRisingEdge = 5, 64 int endRisingEdge = 10, 65 int VerbosityLevel = 1); 66 67 59 68 #endif
Note:
See TracChangeset
for help on using the changeset viewer.