]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EVE/AliHLTEveISDD.cxx
CMake: removing qpythia from the depedencies
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveISDD.cxx
CommitLineData
33791895 1/**************************************************************************
2 * This file is property of and copyright by the ALICE HLT Project *
3 * ALICE Experiment at CERN, All rights reserved. *
4 * *
5 * Primary Authors: Svein Lindal <slindal@fys.uio.no > *
6 * for The ALICE HLT Project. *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
17/// @file AliHLTEvePhos.cxx
18/// @author Svein Lindal <slindal@fys.uio.no>
19/// @brief ISDD class for the HLT EVE display
20
21#include "AliHLTEveISDD.h"
22#include "TEvePointSet.h"
23
24ClassImp(AliHLTEveISDD);
25
26AliHLTEveISDD::AliHLTEveISDD() :
27AliHLTEveITS("ISDD")
28{
29 // Constructor.
30}
31
32AliHLTEveISDD::~AliHLTEveISDD()
33{
34 //Destructor
35}
36
37void AliHLTEveISDD::SetUpPointSet(TEvePointSet * ps) {
38 //See header file for documentation
39 ps->SetMainColor(kBlack);
40 ps->SetMarkerStyle((Style_t)kFullDotMedium);
41}