Hi Mohammad,
I have just renamed all member variables in the tpc package (not yet tpcreco) to conform with the prefixing with f instead of _ in revision 6629.
I still get a lot of warnings. As far as I can see most of them occur in a situation like this:
const TMatrixD& cov() const {return fcov;}
....
....
void SetCov(const TMatrixD& cov){fcov=cov;fhasaxis=false;}
I still believe this is acceptable code. Removing all these situations would take a bit more time.
Regards, Sebastian.
PS: For future reference I used this:
for i in *.{h,cxx} ; do sed -i.bak -e 's/\(\W\)_/\1f/g' $i; done