sgnligo.transforms.condition
¶
An SGN graph to condition incoming data with whitening and gating.
Zero-latency usage (production): - Enable with the --zero-latency command-line option. - This flag is provided by ConditionInfo.append_options and requires no code changes in sgnl scripts; it is parsed by sgnl/bin/inspiral.py and propagated through ConditionInfo to this function. - In zero-latency mode, the Whiten element still computes and publishes the PSD (spectrum_* pads). - The whitening used downstream comes from a chain of two AFIR (AdaptiveCorrelate) elements: 1. Whitening Stage: Driven by WhiteningKernel (Minimum Phase). 2. Drift Correction Stage: Driven by DriftCorrectionKernel (corrects for differences between the live PSD and the static reference PSD). - If input_sample_rate differs from whiten_sample_rate, a Resampler is inserted before the AFIR chain. - Gating (Threshold) is applied after the final AFIR stage. - Detailed Latency: If --detailed-latency is enabled, Latency elements are inserted after each major stage (Resampler, Whitening, Drift Correction) to measure granular processing delays.
ConditionInfo
dataclass
¶
Condition options for whitening and gating
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
whiten_sample_rate
|
int
|
int, the sample rate to perform the whitening |
2048
|
psd_fft_length
|
int
|
int, the fft length for the psd calculation, in seconds |
8
|
ht_gate_threshold
|
float
|
float, the threshold above which to gate out data |
float('+inf')
|
reference_psd
|
Optional[str]
|
str, the filename for the reference psd used in the Whiten element |
None
|
track_psd
|
bool
|
bool, default True, whether to track psd |
True
|
zero_latency
|
bool
|
bool, default False, enable zero-latency whitening via AFIR. |
False
|
detailed_latency
|
bool
|
bool, default False, insert Latency probes after each major stage. |
False
|
Source code in sgnligo/transforms/condition.py
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
condition(pipeline, condition_info, ifos, data_source, input_sample_rate, input_links, whiten_sample_rate=None, whiten_latency=False, highpass_filter=False, zero_latency=False, detailed_latency=False, drift_correction=True)
¶
Condition the data with whitening and gating.
This function wires a conditioning subgraph per IFO.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pipeline
|
Pipeline
|
The sgn pipeline |
required |
ifos
|
list[str]
|
List of ifo names |
required |
data_source
|
str
|
The data source name |
required |
input_sample_rate
|
int
|
Input data rate |
required |
input_links
|
dict[str, str]
|
Source pad names to link (dict by IFO) |
required |
whiten_sample_rate
|
Optional[int]
|
Target whitening rate |
None
|
whiten_latency
|
bool
|
Enable final output latency telemetry |
False
|
highpass_filter
|
bool
|
Enable highpass in Whiten |
False
|
zero_latency
|
bool
|
Enable zero-latency AFIR path |
False
|
detailed_latency
|
bool
|
Enable intermediate latency probes |
False
|
drift_correction
|
bool
|
Enable drift correction stage in zero-latency path |
True
|
Source code in sgnligo/transforms/condition.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | |