Hi,
I'm trying to write a custom force filed that inherits from `FFEval` but that uses the momenta information in its call to `evaluate`. I have a custom `queue` overload that does this
```
def queue(self, atoms, cell, reqid=-1):
return super().queue(atoms, cell, reqid, template={"momenta": dstrip(atoms.p).copy()})
```
But it doesn't seem to be working, I'm getting zeros always when I call `request["momenta"] within `evaluate`.
Is there anything I'm doing wrong here?
Best,
Pablo Zubieta