Fork me on GitHub

source: svn/trunk/interface/BFieldProp.h@ 149

Last change on this file since 149 was 100, checked in by severine ovyn, 16 years ago

Remove datacard bug + CaloTowers OK

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