]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/EVE/AliHLTEveEmcal.cxx
Merge branch 'displayDevel'
[u/mrichter/AliRoot.git] / HLT / EVE / AliHLTEveEmcal.cxx
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  EMCAL class for the HLT EVE display
20 // Author:  Svein Lindal <slindal@fys.uio.no>
21
22 #include "AliHLTEveEmcal.h"
23 #include "AliHLTHOMERBlockDesc.h"
24 #include "TCanvas.h"
25 #include "AliHLTEveBase.h"
26 #include "TEveBoxSet.h"
27 #include "AliPHOSGeometry.h"
28 #include "TVector3.h"
29 #include "AliEveHLTEventManager.h"
30 #include "TEveManager.h"
31 #include "AliHLTCaloDigitDataStruct.h"
32 #include "AliHLTCaloClusterDataStruct.h"
33 #include "AliHLTCaloClusterReader.h"
34 #include "TEveTrans.h"
35 #include "TGeoNode.h"
36 #include "AliEMCALGeoUtils.h"
37 #include "TGeoManager.h"
38
39 #include "TEveGeoShapeExtract.h"
40 #include "TEveGeoNode.h"
41
42 ClassImp(AliHLTEveEmcal)
43
44 AliHLTEveEmcal::AliHLTEveEmcal() : 
45 AliHLTEveCalo(12, "EMCAL"),
46 fGeoUtils(NULL)
47 {
48   //Constructor
49   fGeoUtils = new AliEMCALGeoUtils("EMCAL_COMPLETE","EMCAL");
50   CreateElementList();
51
52 }
53
54
55 AliHLTEveEmcal::~AliHLTEveEmcal()
56 {
57   //Destructor, not implemented
58 }
59
60 void AliHLTEveEmcal::CreateElementList() {
61   
62
63   //TEveGeoShapeExtract * shape = new TEveGeoShapeExtract();
64   TGeoNode * gEMCALNode = gGeoManager->GetTopVolume()->FindNode("XEN1_1");
65   //TEveGeoNode * eveNode = new TEveGeoNode(gEMCALNode);
66   //TEveGeoShapeExtract* juice = eveNode->DumpShapeTree(this, shape, kFALSE);
67   //juice->Dump();
68   //eveNode->WriteExtract("out.root", kFALSE);
69
70   
71   //gStyle->SetPalette(1, 0);
72   TEveRGBAPalette* pal = new TEveRGBAPalette(0, 512);
73   pal->SetLimits(0, 15);
74   
75   fBoxSetDigits = new TEveBoxSet[fNModules];
76   fBoxSetClusters = new TEveBoxSet[fNModules];
77   
78   for (Int_t sm=0; sm<fNModules; ++sm) {
79     
80     //Digits box set
81     fBoxSetDigits[sm].SetTitle(Form("Digits Module %d", sm));
82     fBoxSetDigits[sm].SetName(Form("Digits Module %d", sm));
83     fBoxSetDigits[sm].SetOwnIds(kTRUE);
84     
85     fBoxSetDigits[sm].Reset(TEveBoxSet::kBT_AABox, kFALSE, 64);
86     fBoxSetDigits[sm].RefMainTrans().SetFrom(*gEMCALNode->GetDaughter(sm)->GetMatrix());
87     fBoxSetDigits[sm].SetPalette(pal);
88     
89     AddElement(&fBoxSetDigits[sm]);
90  
91     //Clusters
92     fBoxSetClusters[sm].SetTitle(Form("Clusters Module %d", sm));
93     fBoxSetClusters[sm].SetName(Form("Clusters Module %d", sm));
94     fBoxSetClusters[sm].SetOwnIds(kTRUE);
95     
96     fBoxSetClusters[sm].Reset(TEveBoxSet::kBT_AABox, kFALSE, 64);
97     //    fBoxSetClusters[sm].RefMainTrans().SetFrom(*gEMCALNode->GetDaughter(sm)->GetMatrix());
98     fBoxSetClusters[sm].SetPalette(pal);
99     
100     AddElement(&fBoxSetClusters[sm]);
101
102
103   }
104 }
105
106 void AliHLTEveEmcal::AddClusters(Float_t * pos, Int_t module, Float_t energy) {
107   //See header file for documentation
108
109   fBoxSetClusters[module].AddBox(pos[0], pos[1], pos[2], 6.1, 200*energy, 6.1);
110   fBoxSetClusters[module].DigitValue(static_cast<Int_t>(energy));
111
112   cout << "Cluster " << pos[0] << " " << pos[1] << " " << pos[2] << endl;
113
114
115 }
116
117 void AliHLTEveEmcal::AddDigits(UShort_t fX, UShort_t fZ, Int_t module, Float_t energy) {
118   //See header file for documentation
119   Int_t absid = fGeoUtils->GetAbsCellIdFromCellIndexes(module, fZ, fX);
120   Double_t posX, posY, posZ;
121   if(fGeoUtils->RelPosCellInSModule(absid, posX, posY, posZ)) {
122     
123     cout << "digits " << posX << "  " << posY << "  " << posZ << endl;
124     fBoxSetDigits[module].AddBox(15, posY, posZ, energy*100, 6.1, 6.1);
125     fBoxSetDigits[module].DigitValue(static_cast<Int_t>(energy));
126   } else  {
127     cout <<"AliHLTEveEmcal::AddClusters:  fail"<<endl;
128   }
129 }