~ebonnet/+junk/DataAnalysisPackage

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Liste des classes et prgm d analyse pour l etude de la vaporisation
KaliVeda et ROOT doivent etre installes

just type
make

Before use it with ROOT
you have to add the following lines to your shell configuration file (.cshrc for exmaple)
#Vapo package
setenv VAPO_PKG "where_sources_are"
setenv VAPO_DATA "where_data_are"
setenv LD_LIBRARY_PATH ${VAPO_PKG}:${LD_LIBRARY_PATH}

When launching ROOT 
you have to call the following lines before doing anything

//Load KaliVeda libraries
gSystem->Load("libKVMultiDet");
gSystem->Load("libKVIndra");
KVBase::InitEnvironment();
//
//Load Vapo package
gSystem->SetIncludePath( Form("-I%s/inc",gSystem->Getenv("VAPO_PKG")) );
gSystem->Load("libVapo");

After that you can call and use the build librairy from everywhere