For adding a bit of background, the amplitude a is now a property since the last km3net-dataformat (the release pre V6.00 version of the data processing).
I was not able to find back the info in a changelog, but now every hits has a filled with an amplitude computed from the tot with the PMT model available in JPP.
@tgal I think you've hidden this field, but it can now be accessed.
Here is a small code snippet to access the property as an example (for Nikhef, I don't know where we have data file on sps ...):
import km3io as kio fname = '/dcache/antares/detector_data/reconstructed/v6.00/KM3NeT_00000049/datav6.0.jorcarec.aanet.00008801.root' f = kio.OfflineReader(fname) t = f._fobj['E'].arrays(['hits.a'], library='ak') print (t['hits.a'][0,:])