| 33 | } |
| 34 | |
| 35 | void IEvent::PostTrig(double post_trig) { |
| 36 | auto* metadata = CreateMetaData(); |
| 37 | if (metadata != nullptr) { |
| 38 | metadata->FloatProperty("post_trigger_interval", post_trig); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | double IEvent::PostTrig() const { |
| 43 | const auto* metadata = MetaData(); |
no test coverage detected