From c16c87c01c16a4209c741c8070cb43f4d71de5a6 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 5 Jun 2018 23:15:19 +0200 Subject: [PATCH] Initial version --- DB_Track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DB_Track.cpp b/DB_Track.cpp index c3552f7..0c89fac 100644 --- a/DB_Track.cpp +++ b/DB_Track.cpp @@ -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 ch_id; std::vector sec; std::vector nsec; @@ -45,6 +44,7 @@ int main(int argc, char* argv[]) } twoDhisto -> Draw("lego2"); } + App.Run(); return 0; }