Certain headers of RF-exports are missing units

Issue #498 resolved
Luuk created an issue
    commonheaders += [
....
        'A DAP total (Gy.m^2)',
        'A Dose RP total',
        'A Fluoro DAP total',
        'A Fluoro dose RP total',
        'A Fluoro time total',
        'A Acquisition DAP total',
        'A Acquisition dose RP total',
        'A Acquisition time total',
        'A Number of events',
        'B DAP total (Gy.m^2)',
        'B Dose RP total',
        'B Fluoro DAP total',
        'B Fluoro dose RP total',
        'B Fluoro time total',
        'B Acquisition DAP total',
        'B Acquisition dose RP total',
        'B Acquisition time total',
        'B Number of events',
    ]

Should be replaced with

    commonheaders += [
....
        'A DAP total (Gy.m^2)',
        'A Dose RP total (Gy)',
        'A Fluoro DAP total (Gy.m^2)',
        'A Fluoro dose RP total (Gy)',
        'A Fluoro time total (s)',
        'A Acquisition DAP total (Gy.m^2)',
        'A Acquisition dose RP total (Gy)',
        'A Acquisition time total (s)',
        'A Number of events',
        'B DAP total (Gy.m^2)',
        'B Dose RP total (Gy)',
        'B Fluoro DAP total (Gy.m^2)',
        'B Fluoro dose RP total (Gy)',
        'B Fluoro time total (s)',
        'B Acquisition DAP total (Gy.m^2)',
        'B Acquisition dose RP total (Gy)',
        'B Acquisition time total (s)',
        'B Number of events',
    ]

And also filter thickness unit should be added. unit is (mm)

Comments (6)

  1. Ed McDonagh

    I copied your code @LuukO so I have attributed it to you. I'll be 'rejecting' the PR though so it can close.

  2. Log in to comment