KaliVeda
Toolkit for HIC analysis
Loading...
Searching...
No Matches
KVSimReader_ELIE.h
1
3
4#ifndef __KVSIMREADER_ELIE_H
5#define __KVSIMREADER_ELIE_H
6
7#include "KVSimReader.h"
8
66
67 void init()
68 {
69 tree_name = "ELIE";
70 elie_params = new KVNameValueList;//has to be on heap as it will be stored in TTree::GetUserInfo() list and written to file
71 }
72
73protected:
77 int run_number = -1;
78
79 virtual void define_output_filename();
80 void transform_to_cm();
81
82 void read_elie_params(KVFileReader& input_file_reader);
83public:
85 KVSimReader_ELIE(KVString filename);
86 void ConvertEventsInFile(KVString filename);
87
88 void ReadFile();
92
93 ClassDef(KVSimReader_ELIE, 1) //Read ELIE events before secondary decay
94};
95
96#endif
bool Bool_t
double Double_t
#define ClassDef(name, id)
Handle reading columns of numeric data in text files.
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
Description of properties and kinematics of atomic nuclei.
Definition KVNucleus.h:126
Read ascii files containing events generated by Elie.
void read_elie_params(KVFileReader &input_file_reader)
virtual void define_output_filename()
void ConvertEventsInFile(KVString filename)
KVNameValueList * elie_params
void transform_to_cm()
transform all particle kinematics to CM frame from lab
KVSimReader_ELIE()
Default constructor.
Base class to read output files for simulation and create tree using KVSimEvent class.
Definition KVSimReader.h:51
KVString tree_name
Definition KVSimReader.h:63
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Definition KVString.h:73