]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/trigger/AliHLTD0Candidate.cxx
Merge branch 'master_patch'
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTD0Candidate.cxx
CommitLineData
1340aa42 1// $Id$
2//***************************************************************************
3//* This file is property of and copyright by the ALICE HLT Project *
4//* ALICE Experiment at CERN, All rights reserved. *
5//* *
6//* Primary Authors: Gaute Ovrebekk <st05886@alf.uib.no> *
7//* for The ALICE HLT Project. *
8//* *
9//* Permission to use, copy, modify and distribute this software and its *
10//* documentation strictly for non-commercial purposes is hereby granted *
11//* without fee, provided that the above copyright notice appears in all *
12//* copies and that both the copyright notice and this permission notice *
13//* appear in the supporting documentation. The authors make no claims *
14//* about the suitability of this software for any purpose. It is *
15//* provided "as is" without express or implied warranty. *
16//**************************************************************************
17
18/// @file AliHLTD0Candidate.cxx
19/// @author Gaute Ovrebekk
20/// @date 2010-11-19
21/// @brief Class for storing the D0 candidates
22
23// see header file for class documentation
24// or
25// refer to README to build package
26// or
27// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
28
29#include "AliHLTD0Candidate.h"
30
31/** ROOT macro for the implementation of ROOT specific class methods */
32ClassImp(AliHLTD0Candidate)
33
34AliHLTD0Candidate::AliHLTD0Candidate()
35 : fInvD0(0)
36 , fInvD0bar(0)
37 , fpt(0)
38 , flabelPos(0)
39 , flabelNeg(0)
40 , fPtPos(0)
41 , fPtNeg(0)
42{
43}
44
45AliHLTD0Candidate::AliHLTD0Candidate(Double_t InvD0,Double_t InvD0bar,Double_t pt,
46 Int_t lPos, Int_t lNeg, Double_t PtPos, Double_t PtNeg)
47 : fInvD0(InvD0)
48 , fInvD0bar(InvD0bar)
49 , fpt(pt)
50 , flabelPos(lPos)
51 , flabelNeg(lNeg)
52 , fPtPos(PtPos)
53 , fPtNeg(PtNeg)
54{
55}
56
57AliHLTD0Candidate::~AliHLTD0Candidate()
58{
59}