We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56181c0 commit ad8c9ceCopy full SHA for ad8c9ce
apps/scrtdd/rtdd.cpp
@@ -542,10 +542,10 @@ bool RTDD::validateParameters()
542
} catch ( ... ) { prof->ddcfg.ddObservations2.xcorrMaxInterEvDist = 3; }
543
544
try {
545
- prof->useTheoreticalAuto = configGetDouble(prefix + "theoreticalPhaseAutoOrigin");
+ prof->useTheoreticalAuto = configGetBool(prefix + "theoreticalPhaseAutoOrigin");
546
} catch ( ... ) { prof->useTheoreticalAuto = true; }
547
548
- prof->useTheoreticalManual = configGetDouble(prefix + "theoreticalPhaseManualOrigin");
+ prof->useTheoreticalManual = configGetBool(prefix + "theoreticalPhaseManualOrigin");
549
} catch ( ... ) { prof->useTheoreticalManual = false; }
550
551
prefix = string("profile.") + *it + ".doubleDifferenceObservations.waveformFiltering.";
0 commit comments