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