Rev | Line | |
---|
[54] | 1 | #ifndef _BFIELD_PROP_H_
|
---|
| 2 | #define _BFIELD_PROP_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 | #include <vector>
|
---|
| 15 | #include "TLorentzVector.h"
|
---|
| 16 |
|
---|
| 17 | #include "interface/SmearUtil.h"
|
---|
[100] | 18 |
|
---|
[54] | 19 | #include "Utilities/ExRootAnalysis/interface/BlockClasses.h"
|
---|
| 20 | #include "Utilities/ExRootAnalysis/interface/TSimpleArray.h"
|
---|
| 21 |
|
---|
| 22 | using namespace std;
|
---|
| 23 |
|
---|
[100] | 24 | class TrackPropagation {
|
---|
[54] | 25 |
|
---|
| 26 | public:
|
---|
| 27 | // Constructor
|
---|
[100] | 28 | TrackPropagation(string DetDatacard);
|
---|
[54] | 29 |
|
---|
| 30 | void Propagation(const TRootGenParticle *Part,TLorentzVector &genMomentum);
|
---|
| 31 |
|
---|
| 32 | int MAXITERATION;
|
---|
| 33 | int MINSEGLENGTH;
|
---|
[100] | 34 |
|
---|
| 35 | private:
|
---|
| 36 |
|
---|
| 37 | RESOLution *DET;
|
---|
[54] | 38 | };
|
---|
| 39 |
|
---|
| 40 | #endif
|
---|
| 41 |
|
---|
| 42 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.