er  dev
ERParticle.h
1 /********************************************************************************
2  * Copyright (C) Joint Institute for Nuclear Research *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 
9 #ifndef ERParticle_H
10 #define ERParticle_H
11 
12 #include "TNamed.h"
13 #include "TTree.h"
14 #include "TString.h"
15 #include "TLorentzVector.h"
16 
17 #include "FairMultiLinkedData.h"
18 
19 class ERParticle: public FairMultiLinkedData {
20  public:
21  ERParticle() = default;
22  ERParticle(const TLorentzVector& detectorState, const TLorentzVector& targetState);
23  protected:
24  TLorentzVector fDetectorState;
25  TLorentzVector fTargetState;
26  ClassDef(ERParticle,1);
27 };
28 
29 #endif