1 | #ifndef _FROGUTIL_H_
|
---|
2 | #define _FROGUTIL_H_
|
---|
3 |
|
---|
4 | /***********************************************************************
|
---|
5 | ** **
|
---|
6 | ** /----------------------------------------------\ **
|
---|
7 | ** | Delphes, a framework for the fast simulation | **
|
---|
8 | ** | of a generic collider experiment | **
|
---|
9 | ** \------------- arXiv:0903.2225v1 ------------/ **
|
---|
10 | ** **
|
---|
11 | ** **
|
---|
12 | ** This package uses: **
|
---|
13 | ** ------------------ **
|
---|
14 | ** ROOT: Nucl. Inst. & Meth. in Phys. Res. A389 (1997) 81-86 **
|
---|
15 | ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
|
---|
16 | ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
|
---|
17 | ** FROG: [hep-ex/0901.2718v1] **
|
---|
18 | ** HepMC: Comput. Phys. Commun.134 (2001) 41 **
|
---|
19 | ** **
|
---|
20 | ** ------------------------------------------------------------------ **
|
---|
21 | ** **
|
---|
22 | ** Main authors: **
|
---|
23 | ** ------------- **
|
---|
24 | ** **
|
---|
25 | ** Severine Ovyn Xavier Rouby **
|
---|
26 | ** severine.ovyn@uclouvain.be xavier.rouby@cern **
|
---|
27 | ** **
|
---|
28 | ** Center for Particle Physics and Phenomenology (CP3) **
|
---|
29 | ** Universite catholique de Louvain (UCL) **
|
---|
30 | ** Louvain-la-Neuve, Belgium **
|
---|
31 | ** **
|
---|
32 | ** Copyright (C) 2008-2009, **
|
---|
33 | ** All rights reserved. **
|
---|
34 | ** **
|
---|
35 | ***********************************************************************/
|
---|
36 |
|
---|
37 |
|
---|
38 | /// \file FrogUtil.h
|
---|
39 | /// \brief FrogDisplay class
|
---|
40 |
|
---|
41 | #include "SmearUtil.h"
|
---|
42 | #include "FROG_Events.h"
|
---|
43 |
|
---|
44 |
|
---|
45 | using namespace std;
|
---|
46 | class FrogDisplay {
|
---|
47 |
|
---|
48 | public:
|
---|
49 | /// Constructor
|
---|
50 | FrogDisplay();
|
---|
51 | FrogDisplay(const string& DetDatacard);
|
---|
52 | FrogDisplay(const RESOLution* DetDatacard);
|
---|
53 | FrogDisplay(const FrogDisplay& frog);
|
---|
54 | FrogDisplay& operator=(const FrogDisplay& frog);
|
---|
55 | ~FrogDisplay() {delete DET;}
|
---|
56 |
|
---|
57 | void BuildEvents(const string& outputfilename);
|
---|
58 | void BuildGeom();
|
---|
59 |
|
---|
60 | private:
|
---|
61 | RESOLution *DET;
|
---|
62 | unsigned int nEntryFrog;
|
---|
63 |
|
---|
64 | };
|
---|
65 |
|
---|
66 | #endif
|
---|