Example:
point_branches = {
"NeulandPoints.fTime": "float",
"NeulandPoints.fDetectorID": "int32",
"NeulandPoints.fELoss": "float64",
"NeulandPoints.fX": "float64",
"NeulandPoints.fY": "float64",
}
point_branches_rename = {
"NeulandPoints.fTime": "times",
"NeulandPoints.fELoss": "energies",
"NeulandPoints.fDetectorID": "module_num",
}
point_dataframe = RootPDConverter(point_branches).convert_to_dataframe("filename.root", point_branches_rename)
print(point_dataframe)