]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAODDiJet.cxx
LUTs mapping symnames and original global matrices removed from AliGeomManager, which...
[u/mrichter/AliRoot.git] / STEER / AliAODDiJet.cxx
CommitLineData
5769fc2c 1/**************************************************************************
2 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18//-------------------------------------------------------------------------
19// AOD class for di-jets
20// The present version is for test purposes only
21// Author: Andreas Morsch, CERN
22//-------------------------------------------------------------------------
23
24#include <TLorentzVector.h>
25#include "AliAODDiJet.h"
26
27ClassImp(AliAODDiJet)
28
29
30//______________________________________________________________________________
31AliAODDiJet::AliAODDiJet() :
32 AliAODJet(),
33 fJetR(0),
34 fJet1(0),
35 fJet2(0)
36{
37 // constructor
38}
39
40AliAODDiJet::AliAODDiJet(Double_t px, Double_t py, Double_t pz, Double_t e):
41 AliAODJet(px, py, pz, e),
42 fJetR(new TRefArray(2)),
43 fJet1(0),
44 fJet2(0)
45{
46 // another constructor
47}
48
49AliAODDiJet::AliAODDiJet(TLorentzVector & p):
50 AliAODJet(p),
51 fJetR(new TRefArray(2)),
52 fJet1(0),
53 fJet2(0)
54{
55 // constructor
56}
57
58
59//______________________________________________________________________________
60AliAODDiJet::~AliAODDiJet()
61{
62 // destructor
63}