add and use clean.sh

This commit is contained in:
Balogh Laszlo 2017-10-30 14:30:35 +01:00
parent c48be55b0c
commit 370e43343f
2 changed files with 4 additions and 2 deletions

2
clean.sh Executable file
View File

@ -0,0 +1,2 @@
rm *.root
rm -rf bm1d_build

View File

@ -5,8 +5,8 @@ Plotter::Plotter()
fOut = new TFile("result.root", "RECREATE");
canv = new TCanvas("canc","display",800,400);
BM1DTree = new TTree("BM1DTree","BM1DTree");
BM1DTree->Branch("tl",&tl, "tl/D");
BM1DTree->Branch("xl",&xl, "xl/D");
BM1DTree->Branch("t",&tl, "t/D");
BM1DTree->Branch("x",&xl, "x/D");
}
void Plotter::Plot(Int_t n, std::vector<Double_t> t, std::vector<Double_t> x){