Ok, I looked a bit in to the problem and I think I found a quick fix that is now at a pending PR
It will be soon merged to master
I am also investigating the errors you got about the Eve libraries. If I disable REST_EVE I also get into troubles, the point is that we never got into this error because it seems that in our systems Eve libraries in ROOT are always active.
In the code as written, you are trying to pass a class through a pointer. Instead, an instance should be created from the class. E.g. rawEv = ROOT.TRestRawSignalEvent() if the class has a default constructor.
Ok, I was trying to create the rawEv instance without parenthesis. I.e. rawEv = ROOT.TRestRawSignalEvent, instead, using rawEv = ROOT.TRestRawSignalEvent() solved the problem!