Fork me on GitHub

source: svn/trunk/interface/FrogUtil.h@ 97

Last change on this file since 97 was 97, checked in by severine ovyn, 16 years ago

Frog stuffs

File size: 1.5 KB
Line 
1#ifndef _FROGUTIL_H_
2#define _FROGUTIL_H_
3
4/*
5 ---- Delphes ----
6 A Fast Simulator for general purpose LHC detector
7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be
8
9 Center for Particle Physics and Phenomenology (CP3)
10 Universite Catholique de Louvain (UCL)
11 Louvain-la-Neuve, Belgium
12*/
13
14/// \file SmearUtil.h
15/// \brief RESOLution class, and some generic definitions
16
17#include <iostream>
18#include <fstream>
19#include <utility>
20#include <vector>
21#include <math.h>
22
23#include "TStyle.h"
24#include "TPad.h"
25#include "TCanvas.h"
26#include "TSystem.h"
27#include "TArrow.h"
28#include "TROOT.h"
29#include "TApplication.h"
30#include "THStack.h"
31#include "stdio.h"
32#include "TChain.h"
33#include "TString.h"
34#include "TGraphErrors.h"
35#include "TClonesArray.h"
36#include "TFile.h"
37#include "TH2.h"
38#include "THStack.h"
39#include "TLegend.h"
40#include "TPaveText.h"
41#include "TLorentzVector.h"
42#include "TTree.h"
43#include "TBranch.h"
44#include "TRandom.h"
45
46#include "interface/SmearUtil.h"
47#include "Utilities/ExRootAnalysis/interface/BlockClasses.h"
48
49#include "Utilities/ExRootAnalysis/interface/ExRootTreeReader.h"
50#include "Utilities/ExRootAnalysis/interface/ExRootTreeWriter.h"
51#include "Utilities/ExRootAnalysis/interface/ExRootTreeBranch.h"
52
53#include "Utilities/FROG/Includes/FROG/FROG_Events.h"
54
55
56using namespace std;
57class FrogDisplay
58{
59 public:
60 /// Constructor
61 FrogDisplay();
62
63 void Build_1Event(FROG_Element_Event* event1);
64 void BuidEvents(string outputfilename,int nEntryFrog);
65 void BuildGeom(string DetDatacard);
66
67};
68
69#endif
Note: See TracBrowser for help on using the repository browser.