Skip to content
Snippets Groups Projects
Commit 2d0e99bd authored by Bertrand Bellenot's avatar Bertrand Bellenot
Browse files

Convert __FILE__ path in tutorials on Windows

parent 289edc4c
No related branches found
No related tags found
No related merge requests found
...@@ -55,6 +55,6 @@ void importdir(const char *dirname) { ...@@ -55,6 +55,6 @@ void importdir(const char *dirname) {
void importCode() { void importCode() {
TFile *f = new TFile("code.root","recreate"); TFile *f = new TFile("code.root","recreate");
TString dir = gROOT->GetTutorialDir(); TString dir = gROOT->GetTutorialDir();
importdir(dir); //change the directory as you like importdir(gSystem->UnixPathName(dir.Data())); //change the directory as you like
delete f; delete f;
} }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#ifndef CLONESA_EVENT_SECOND_RUN #ifndef CLONESA_EVENT_SECOND_RUN
void clonesA_Event() { void clonesA_Event() {
TString dir = gSystem->DirName(__FILE__); TString dir = gSystem->UnixPathName(gSystem->DirName(__FILE__));
gROOT->ProcessLine(TString(".L ")+dir+"/clonesA_Event.cxx+"); gROOT->ProcessLine(TString(".L ")+dir+"/clonesA_Event.cxx+");
#define CLONESA_EVENT_SECOND_RUN yes #define CLONESA_EVENT_SECOND_RUN yes
gROOT->ProcessLine("#include \"" __FILE__ "\""); gROOT->ProcessLine("#include \"" __FILE__ "\"");
......
...@@ -19,6 +19,7 @@ void hsimpleProxyDriver() ...@@ -19,6 +19,7 @@ void hsimpleProxyDriver()
} }
TTree *ntuple = nullptr; TTree *ntuple = nullptr;
file->GetObject("ntuple",ntuple); file->GetObject("ntuple",ntuple);
TString dir = gSystem->DirName(__FILE__); std::string s1(__FILE__);
TString dir = gSystem->UnixPathName(s1.substr(0, s1.find_last_of("\\/")).c_str());
ntuple->Draw(dir+"/hsimpleProxy.C+"); ntuple->Draw(dir+"/hsimpleProxy.C+");
} }
...@@ -51,7 +51,7 @@ void testUnfold6() ...@@ -51,7 +51,7 @@ void testUnfold6()
ofstream dtdFile("tunfoldbinning.dtd"); ofstream dtdFile("tunfoldbinning.dtd");
TUnfoldBinningXML::WriteDTD(dtdFile); TUnfoldBinningXML::WriteDTD(dtdFile);
dtdFile.close(); dtdFile.close();
TString dir = gSystem->DirName(__FILE__); TString dir = gSystem->UnixPathName(gSystem->DirName(__FILE__));
Int_t error=parser.ParseFile(dir+"/testUnfold6binning.xml"); Int_t error=parser.ParseFile(dir+"/testUnfold6binning.xml");
if(error) cout<<"error="<<error<<" from TDOMParser\n"; if(error) cout<<"error="<<error<<" from TDOMParser\n";
TXMLDocument const *XMLdocument=parser.GetXMLDocument(); TXMLDocument const *XMLdocument=parser.GetXMLDocument();
......
...@@ -116,7 +116,7 @@ void testUnfold7b() ...@@ -116,7 +116,7 @@ void testUnfold7b()
// read binning schemes in XML format // read binning schemes in XML format
TDOMParser parser; TDOMParser parser;
TString dir = gSystem->DirName(__FILE__); TString dir = gSystem->UnixPathName(gSystem->DirName(__FILE__));
Int_t error=parser.ParseFile(dir+"/testUnfold7binning.xml"); Int_t error=parser.ParseFile(dir+"/testUnfold7binning.xml");
if(error) { if(error) {
cout<<"error="<<error<<" from TDOMParser\n"; cout<<"error="<<error<<" from TDOMParser\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment