Parameter classes should be captured by non-const reference in local operators
After some discussions with Marian, we concluded that capturing the parameter classes by const
reference in the local operators is not correct, as the local operators need to be able to call setTime()
on the parameter. That is not possible with a const
ref, so we should adjust the local operators accordingly.