28///@brief transform the output from a regular filter into a sigmoid ranging from 0-1 according to:
29/// fx = 1/[1 + exp[ ( x - offset ) * steepness ]
30/// The function asymptotically reaches 1 at negative values and 0 at positive values. It's 0.5 at the offset and steepness determines its slope at the offset
56voidreset_baseline( core::pose::Poseconst & pose, boolconst attempt_read_from_checkpoint ); /// allows within-trajectory resetting of the baseline. Notice this is nonconst, so can't be called from apply. attempt_read_from_checkpoint should be true for MC trials > 1, but false otherwise
65core::Realbaseline_; /// dflt 0; this is tricky; used internally to keep track of where the pose started. It is only reset by reset_baseline, and cannot, due to constness, be changed by apply