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