]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZERO.cxx
Use CDH object in which the trigger information is already filled in (AliRawDataHeade...
[u/mrichter/AliRoot.git] / VZERO / AliVZERO.cxx
CommitLineData
47890cd3 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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
88cb7938 16/* $Id$ */
47890cd3 17
18///////////////////////////////////////////////////////////////////////////
19// //
20// V-Zero Detector //
21// This class contains the base procedures for the VZERO detector //
b0d2c2d3 22// Default geometry of November 2003 : V0R box is 4.4 cm thick //
23// scintillators are 2 cm thick //
47890cd3 24// All comments should be sent to Brigitte CHEYNIS : //
61874e87 25// b.cheynis@ipnl.in2p3.fr //
26// //
47890cd3 27// //
28///////////////////////////////////////////////////////////////////////////
29
88cb7938 30
b2501ea3 31// --- Standard libraries ---
3af027ba 32#include <Riostream.h>
b0d2c2d3 33#include <stdlib.h>
47890cd3 34
b2501ea3 35// --- ROOT libraries ---
36#include <TNamed.h>
b0d2c2d3 37#include "TROOT.h"
38#include "TFile.h"
39#include "TNetFile.h"
40#include "TRandom.h"
41#include "TTree.h"
42#include "TBranch.h"
43#include "TClonesArray.h"
44#include "TStopwatch.h"
b2501ea3 45
46// --- AliRoot header files ---
47#include "AliRun.h"
48#include "AliMC.h"
47890cd3 49#include "AliVZERO.h"
b2501ea3 50#include "AliVZEROLoader.h"
b0d2c2d3 51#include "AliVZERODigitizer.h"
52#include "AliVZEROBuffer.h"
53#include "AliRunDigitizer.h"
54#include "AliVZEROdigit.h"
362c9d61 55#include "AliDAQ.h"
20a489c2 56#include "AliRawReader.h"
57#include "AliVZERORawStream.h"
47890cd3 58
59ClassImp(AliVZERO)
0b2bea8b 60 //__________________________________________________________________
61AliVZERO::AliVZERO(): AliDetector(),
62 fIdSens1(0),
63 fThickness(0.),
64 fThickness1(0.),
65 fMaxStepQua(0.),
66 fMaxStepAlu(0.),
67 fMaxDestepQua(0.),
68 fMaxDestepAlu(0.)
69{
70/// Default Constructor
71
72 AliDebug(1,Form("default (empty) ctor this=%p",this));
73 fIshunt = 0;
74}
47890cd3 75//_____________________________________________________________________________
76AliVZERO::AliVZERO(const char *name, const char *title)
0b2bea8b 77 : AliDetector(name,title),
78 fIdSens1(0),
79 fThickness(4.4),
80 fThickness1(2.0),
81 fMaxStepQua(0.05),
82 fMaxStepAlu(0.01),
83 fMaxDestepQua(-1.0),
84 fMaxDestepAlu(-1.0)
47890cd3 85{
0b2bea8b 86
47890cd3 87 // Standard constructor for VZERO Detector
0b2bea8b 88
89 AliDebug(1,Form("ctor this=%p",this));
47890cd3 90
b0d2c2d3 91 // fIshunt = 1; // All hits are associated with primary particles
47890cd3 92
61874e87 93 fHits = new TClonesArray("AliVZEROhit", 400);
94 fDigits = new TClonesArray("AliVZEROdigit",400);
95
5d12ce38 96 gAlice->GetMCApp()->AddHitList(fHits);
61874e87 97
0b2bea8b 98// fThickness = 4.4; // total thickness of the V0R box in cm
99// fThickness1 = 2.0; // thickness of scintillating cells in cm
100//
101// fMaxStepQua = 0.05;
102// fMaxStepAlu = 0.01;
103//
104// fMaxDestepQua = -1.0;
105// fMaxDestepAlu = -1.0;
47890cd3 106
47890cd3 107
61874e87 108}
109
110//_____________________________________________________________________________
111AliVZERO::~AliVZERO()
112{
b2501ea3 113 //
114 // Default destructor for VZERO Detector
115 //
116
61874e87 117 if (fHits) {
118 fHits->Delete();
119 delete fHits;
b0d2c2d3 120 fHits=0; }
b2501ea3 121
122 if (fDigits) {
123 fDigits->Delete();
124 delete fDigits;
b0d2c2d3 125 fDigits=0; }
61874e87 126}
47890cd3 127
128//_____________________________________________________________________________
129void AliVZERO::BuildGeometry()
130{
131 //
b2501ea3 132 // Builds simple ROOT TNode geometry for event display
47890cd3 133 //
134}
135
136//_____________________________________________________________________________
137void AliVZERO::CreateGeometry()
138{
139 //
b2501ea3 140 // Builds simple Geant3 geometry
47890cd3 141 //
142}
143//_____________________________________________________________________________
144void AliVZERO::CreateMaterials()
145{
146 //
b2501ea3 147 // Creates materials used for Geant3 geometry
47890cd3 148 //
149}
61874e87 150
47890cd3 151//_____________________________________________________________________________
652e94c3 152Int_t AliVZERO::DistanceToPrimitive(Int_t /*px*/, Int_t /*py*/)
47890cd3 153{
154 //
b2501ea3 155 // Calculates the distance from the mouse to the VZERO on the screen
47890cd3 156 // Dummy routine
157 //
158
159 return 9999;
160}
161
b2501ea3 162//_____________________________________________________________________________
47890cd3 163void AliVZERO::Init()
164{
165 //
b2501ea3 166 // Initialises the VZERO class after it has been built
47890cd3 167 //
168}
169
61874e87 170
b2501ea3 171//_____________________________________________________________________________
47890cd3 172void AliVZERO::SetMaxStepQua(Float_t p1)
173{
b2501ea3 174 //
175 // Possible parametrisation of steps in active materials
176 //
47890cd3 177 fMaxStepQua = p1;
178}
179
b2501ea3 180//_____________________________________________________________________________
47890cd3 181void AliVZERO::SetMaxStepAlu(Float_t p1)
182{
b2501ea3 183 //
184 // Possible parametrisation of steps in Aluminum foils (not used in
185 // version v2)
186 //
47890cd3 187 fMaxStepAlu = p1;
188}
189
b2501ea3 190//_____________________________________________________________________________
47890cd3 191void AliVZERO::SetMaxDestepQua(Float_t p1)
192{
b2501ea3 193 //
194 // Possible parametrisation of steps in active materials (quartz)
195 //
47890cd3 196 fMaxDestepQua = p1;
197}
198
b2501ea3 199//_____________________________________________________________________________
47890cd3 200void AliVZERO::SetMaxDestepAlu(Float_t p1)
201{
b2501ea3 202 //
203 // Possible parametrisation of steps in Aluminum (not used in
204 // version v2)
205 //
47890cd3 206 fMaxDestepAlu = p1;
207}
4dbb3fd3 208
b2501ea3 209//_____________________________________________________________________________
4dbb3fd3 210AliLoader* AliVZERO::MakeLoader(const char* topfoldername)
211{
b2501ea3 212 //
213 // Builds VZEROgetter (AliLoader type)
4dbb3fd3 214 // if detector wants to use customized getter, it must overload this method
b2501ea3 215 //
3e87825e 216// Info("MakeLoader","Creating AliVZEROLoader. Top folder is %s.",topfoldername);
217
218 AliDebug(1,Form("Creating AliVZEROLoader, Top folder is %s ",topfoldername));
4dbb3fd3 219 fLoader = new AliVZEROLoader(GetName(),topfoldername);
220 return fLoader;
221}
222
b2501ea3 223//_____________________________________________________________________________
224void AliVZERO::SetTreeAddress()
225{
b0d2c2d3 226 //
0e305a84 227 // Sets tree address for hits.
b2501ea3 228 //
0e305a84 229 if (fLoader->TreeH() && (fHits == 0x0))
230 fHits = new TClonesArray("AliVZEROhit", 400);
231
232 AliDetector::SetTreeAddress();
233}
4dbb3fd3 234
b0d2c2d3 235//_____________________________________________________________________________
236AliDigitizer* AliVZERO::CreateDigitizer(AliRunDigitizer* manager) const
237{
238 //
239 // Creates a digitizer for VZERO
240 //
241 return new AliVZERODigitizer(manager);
242}
243
244//_____________________________________________________________________________
245void AliVZERO::Hits2Digits(){
246 //
247 // Converts hits to digits of the current event
248 //
249 // Inputs file name
d3d4a92f 250 const char *alifile = "galice.root";
b0d2c2d3 251
252 // Create the run digitizer
253 AliRunDigitizer* manager = new AliRunDigitizer(1, 1);
254 manager->SetInputStream(0, alifile);
255 manager->SetOutputFile("H2Dfile");
256
257 // Creates the VZERO digitizer
258 AliVZERODigitizer* dig = new AliVZERODigitizer(manager);
259
260 // Creates the digits
261 dig->Exec("");
262
263}
264//_____________________________________________________________________________
265void AliVZERO::Digits2Raw()
266{
267 //
268 // Converts digits of the current event to raw data
269 //
270 AliVZERO *fVZERO = (AliVZERO*)gAlice->GetDetector("VZERO");
271 fLoader->LoadDigits();
272 TTree* digits = fLoader->TreeD();
273 if (!digits) {
274 Error("Digits2Raw", "no digits tree");
275 return;
276 }
277 TClonesArray * VZEROdigits = new TClonesArray("AliVZEROdigit",1000);
278 fVZERO->SetTreeAddress();
279 digits->GetBranch("VZERODigit")->SetAddress(&VZEROdigits);
280
362c9d61 281 const char *fileName = AliDAQ::DdlFileName("VZERO",0);
b0d2c2d3 282 AliVZEROBuffer* buffer = new AliVZEROBuffer(fileName);
283
284 // Verbose level
285 // 0: Silent
286 // 1: cout messages
287 // 2: txt files with digits
288 // BE CAREFUL, verbose level 2 MUST be used only for debugging and
289 // it is highly suggested to use this mode only for debugging digits files
290 // reasonably small, because otherwise the size of the txt files can reach
291 // quickly several MB wasting time and disk space.
292
293 ofstream ftxt;
294 buffer->SetVerbose(0);
726d762c 295 Int_t verbose = buffer->GetVerbose();
b0d2c2d3 296
726d762c 297 // Get Trigger information first
298 // Read trigger inputs from trigger-detector object
299 AliDataLoader * dataLoader = fLoader->GetDigitsDataLoader();
300 if( !dataLoader->IsFileOpen() )
301 dataLoader->OpenFile( "READ" );
302 AliTriggerDetector* trgdet = (AliTriggerDetector*)dataLoader->GetDirectory()->Get( "Trigger" );
303 UInt_t triggerInfo = 0;
304 if(trgdet) {
305 triggerInfo = trgdet->GetMask() & 0xffff;
306 }
307 else {
308 AliError(Form("There is no trigger object for %s",fLoader->GetName()));
309 }
310 buffer->WriteTriggerInfo((UInt_t)triggerInfo);
311
312 // Now write the channel information: charge+time
313 // We assume here an ordered (by PMNumber) array of
314 // digits!!
b0d2c2d3 315 Int_t nEntries = Int_t(digits->GetEntries());
b0d2c2d3 316 for (Int_t i = 0; i < nEntries; i++) {
317
318 fVZERO->ResetDigits();
319 digits->GetEvent(i);
320 Int_t ndig = VZEROdigits->GetEntriesFast();
321
322 if(ndig == 0) continue;
726d762c 323 if(verbose == 2) {ftxt.open("VZEROdigits.txt",ios::app);}
b0d2c2d3 324 for(Int_t k=0; k<ndig; k++){
325 AliVZEROdigit* fVZERODigit = (AliVZEROdigit*) VZEROdigits->At(k);
20277079 326 Int_t ADC = fVZERODigit->ADC();
327 Int_t PMNumber = fVZERODigit->PMNumber();
328 Int_t Time = fVZERODigit->Time();
726d762c 329 if(verbose == 1) { cout <<"DDL: "<<fileName<< "\tdigit number: "<< k<<"\tPM number: "
20277079 330 <<PMNumber<<"\tADC: "<< ADC << "\tTime: "<< Time << endl;}
726d762c 331 if(verbose == 2) {
20277079 332 ftxt<<"DDL: "<<fileName<< "\tdigit number: "<< k<<"\tPM number: "
333 <<PMNumber<<"\tADC: "<< ADC << "\tTime: "<< Time << endl;
b0d2c2d3 334 }
726d762c 335 buffer->WriteChannel(PMNumber, ADC, Time);
b0d2c2d3 336 }
726d762c 337 if(verbose==2) ftxt.close();
b0d2c2d3 338 }
339
726d762c 340 buffer->WriteScalers();
341 buffer->WriteMBInfo();
342
b0d2c2d3 343 delete buffer;
344 fLoader->UnloadDigits();
345}
346
20a489c2 347//_____________________________________________________________________________
348Bool_t AliVZERO::Raw2SDigits(AliRawReader* rawReader){
349 // Converts the VZERO raw data into digits
350 // The method is used for merging simulated and
351 // real data events
352 TStopwatch timer;
353 timer.Start();
354
355 if(!fLoader) {
356 AliError("no VZERO loader found");
357 return kFALSE; }
358
359 TTree* treeD = fLoader->TreeD();
360 if(!treeD) {
361 fLoader->MakeTree("D");
362 treeD = fLoader->TreeD(); }
363
364 AliVZEROdigit digit;
365 AliVZEROdigit* pdigit = &digit;
366 const Int_t kBufferSize = 4000;
367
368 treeD->Branch("VZERO", "AliVZEROdigit", &pdigit, kBufferSize);
369
370 rawReader->Reset();
371 AliVZERORawStream* rawStream = new AliVZERORawStream(rawReader);
372
373 if (!rawStream->Next()) return kFALSE; // No VZERO data found
374
375 for(Int_t i=0; i<64; i++) {
376 new(pdigit) AliVZEROdigit(i, (Int_t)rawStream->GetADC(i), (Int_t)rawStream->GetTime(i));
377 treeD->Fill();
378 }
379
380// Checks if everything is OK by printing results
381
382// for(int i=0;i<64;i++) {
383// printf("Channel %d : %d %d \n",i,rawStream->GetADC(i),rawStream->GetTime(i)); }
384// treeD->Print(); printf(" \n");
385
386 fLoader->WriteDigits("OVERWRITE");
387 fLoader->UnloadDigits();
388
389 delete rawStream;
390
391 timer.Stop();
392 timer.Print();
393}
394
4dbb3fd3 395