]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDMultAlgorithm.cxx
08-mar-2006 NvE Time offset correction in IceF2k extended to allow also a user define...
[u/mrichter/AliRoot.git] / FMD / AliFMDMultAlgorithm.cxx
CommitLineData
e802be3e 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
16/* $Id$ */
17
18//____________________________________________________________________
19//
20// Base class for FMD reconstruction algorithms.
21//
22// Derived classes will implement various ways of reconstructing the
23// charge particle multiplicity in the FMD.
24//
7684b53c 25// +---------------------+ +---------------------+
26// | AliFMDReconstructor |<>-----| AliFMDMultAlgorithm |
27// +---------------------+ +---------------------+
28// ^
29// |
30// +-----------+---------+
31// | |
32// +-------------------+ +------------------+
33// | AliFMDMultPoisson | | AliFMDMultNaiive |
34// +-------------------+ +------------------+
35//
36// AliFMDReconstructor acts as a manager class. It contains a list of
37// AliFMDMultAlgorithm objects. The call graph looks something like
38//
39//
40// +----------------------+ +----------------------+
41// | :AliFMDReconstructor | | :AliFMDMultAlgorithm |
42// +----------------------+ +----------------------+
43// | |
44// Reconstruct +-+ |
45// ------------>| | PreRun +-+
46// | |------------------------------->| |
47// | | +-+
48// | |-----+ (for each event) |
49// | | | *ProcessEvent |
50// |+-+ | |
51// || |<---+ PreEvent +-+
52// || |------------------------------>| |
53// || | +-+
54// || |-----+ |
55// || | | ProcessDigits |
56// ||+-+ | |
57// ||| |<---+ |
58// ||| | *ProcessDigit(digit) +-+
59// ||| |----------------------------->| |
60// ||| | +-+
61// ||+-+ |
62// || | PostEvent +-+
63// || |------------------------------>| |
64// || | +-+
65// |+-+ |
66// | | PostRun +-+
67// | |------------------------------->| |
68// | | +-+
69// +-+ |
70// | |
71//
72//
56b1929b 73#include "AliFMDMultAlgorithm.h" // ALIFMDMULTALGORITHM_H
74#include "AliFMDDigit.h" // ALIFMDDIGIT_H
75#include <TClonesArray.h> // ROOT_TClonesArray
e802be3e 76
77//____________________________________________________________________
925e6570 78ClassImp(AliFMDMultAlgorithm)
1a1fdef7 79#if 0
80 ; // This is here to keep Emacs for indenting the next line
81#endif
e802be3e 82
83//____________________________________________________________________
56b1929b 84AliFMDMultAlgorithm::AliFMDMultAlgorithm(const char* name, const char* title)
85 : TNamed(name, title),
86 fTreeR(0),
87 fMult(0),
88 fFMD(0)
088f8e79 89{
90 // Default CTOR
91}
e802be3e 92
56b1929b 93//____________________________________________________________________
94AliFMDMultAlgorithm::~AliFMDMultAlgorithm()
95{
088f8e79 96 // DTOR
f7040cf6 97 if (fMult) {
98 fMult->Delete();
99 delete fMult;
100 }
56b1929b 101}
102
103
104//____________________________________________________________________
105void
106AliFMDMultAlgorithm::PreEvent(TTree* treeR, Float_t /* ipZ */)
107{
088f8e79 108 // Executed before each event.
56b1929b 109 if (fMult) fMult->Clear();
110 fNMult = 0;
111 fTreeR = treeR;
112}
113
e802be3e 114
115
116//____________________________________________________________________
117//
118// EOF
119//