Last change
on this file since 224 was 223, checked in by Xavier Rouby, 16 years ago |
include statements have been cleaned ; copy-constructor ; operator= ; destructor
|
File size:
866 bytes
|
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 "SmearUtil.h"
|
---|
18 | #include "FROG_Events.h"
|
---|
19 |
|
---|
20 |
|
---|
21 | using namespace std;
|
---|
22 | class FrogDisplay {
|
---|
23 |
|
---|
24 | public:
|
---|
25 | /// Constructor
|
---|
26 | FrogDisplay();
|
---|
27 | FrogDisplay(const string& DetDatacard);
|
---|
28 | FrogDisplay(const RESOLution* DetDatacard);
|
---|
29 | FrogDisplay(const FrogDisplay& frog);
|
---|
30 | FrogDisplay& operator=(const FrogDisplay& frog);
|
---|
31 | ~FrogDisplay() {delete DET;}
|
---|
32 |
|
---|
33 | void BuildEvents(const string& outputfilename);
|
---|
34 | void BuildGeom();
|
---|
35 |
|
---|
36 | private:
|
---|
37 | RESOLution *DET;
|
---|
38 | unsigned int nEntryFrog;
|
---|
39 |
|
---|
40 | };
|
---|
41 |
|
---|
42 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.