Initial version

This commit is contained in:
Gitea 2018-06-05 23:15:19 +02:00
parent ae9b156b28
commit c16c87c01c
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,6 @@ int main(int argc, char* argv[])
TApplication App("tapp", &argc, argv);
TH2D *twoDhisto = new TH2D("2Dhisto","2Dhisto", 100, 0, 32, 100, 0, 32);
std::vector<int> ch_id;
std::vector<int> sec;
std::vector<int> nsec;
@ -45,6 +44,7 @@ int main(int argc, char* argv[])
}
twoDhisto -> Draw("lego2");
}
App.Run();
return 0;
}