#include <cmath>
#include <vector>
#include "TFile.h"
#include "TStyle.h"
#include "TMath.h"
#include "Resplot.h"
#include "Random.h"
Go to the source code of this file.
- Author
- mark sutton
- Date
- Fri 11 Jan 2019 07:41:27 CET
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Definition in file Trigger/TrigAnalysis/TrigInDetAnalysisUser/Resplot/src/main.cxx.
◆ main()
Definition at line 23 of file Trigger/TrigAnalysis/TrigInDetAnalysisUser/Resplot/src/main.cxx.
25 std::cout <<
"main()" << std::endl;
27 TFile
f(
"out.root",
"recreate");
31 double xlimitlo = -10;
35 double ylimitlo = -30;
39 Resplot plot1(
"plot1", Nxbins, xlimitlo, xlimithi, Nybins, ylimitlo, ylimithi );
40 Resplot plot2(
"plot2", Nxbins, xlimitlo, xlimithi, Nybins, ylimitlo, ylimithi );
42 std::cout <<
"running" << std::endl;
48 for (
int i=0 ;
i<10000 ;
i++ ) {
50 if ( (
i%1000)==0 ) std::cout <<
"process event " <<
i << std::endl;
60 std::cout <<
"finalising" << std::endl;
64 std::cout << __LINE__ << std::endl;
75 std::cout <<
"closing f" << std::endl;
79 std::cout <<
"operations" << std::endl;