Fork me on GitHub

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

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

1 file ->several

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