## Introduction about how to translate d3plot file to lsda file and read lsda file

=================================
### Translate d3plot file to lsda file
Firstly, open d3plot file using LS-Reader. And then, translate it to lsda format.

#### C++
D3plotReader dr("your/d3plot/file/path");
dr.WriteLsdaFile("your/lsda/file/path", "your/config/file/path");

#### C
char* handle = D3P_Open("your/d3plot/file/path");
D3P_WriteLsdaFile(handle, "your/lsda/file/path", "your/config/file/path");

=================================
### Read lsda file

#### C++
D3plotReader drlsda("your/lsda/file/path", "d3lsda");
drlsda.GetData(...); // it is same as d3plot

#### C
char* handle = D3P_OpenD3lsda("your/lsda/file/path");
D3P_Read(handle, ...); // it is same as d3plot

=================================
### Notes
The template of configuration file see ./config.json
