[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 |
|
---|
[264] | 36 | /// \file FrogUtil.h
|
---|
| 37 | /// \brief FrogDisplay class
|
---|
| 38 |
|
---|
[223] | 39 | #include "SmearUtil.h"
|
---|
| 40 | #include "FROG_Events.h"
|
---|
[97] | 41 |
|
---|
| 42 |
|
---|
[223] | 43 | using namespace std;
|
---|
| 44 | class FrogDisplay {
|
---|
[97] | 45 |
|
---|
[223] | 46 | public:
|
---|
| 47 | /// Constructor
|
---|
| 48 | FrogDisplay();
|
---|
| 49 | FrogDisplay(const string& DetDatacard);
|
---|
| 50 | FrogDisplay(const RESOLution* DetDatacard);
|
---|
| 51 | FrogDisplay(const FrogDisplay& frog);
|
---|
| 52 | FrogDisplay& operator=(const FrogDisplay& frog);
|
---|
| 53 | ~FrogDisplay() {delete DET;}
|
---|
[97] | 54 |
|
---|
[223] | 55 | void BuildEvents(const string& outputfilename);
|
---|
| 56 | void BuildGeom();
|
---|
[97] | 57 |
|
---|
[223] | 58 | private:
|
---|
| 59 | RESOLution *DET;
|
---|
| 60 | unsigned int nEntryFrog;
|
---|
[97] | 61 |
|
---|
| 62 | };
|
---|
| 63 |
|
---|
| 64 | #endif
|
---|