1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
17 /* History of cvs commits:
20 * Revision 1.24 2005/05/28 14:19:05 schutz
21 * Compilation warnings fixed by T.P.
25 //_________________________________________________________________________
26 // Version of AliPHOSv1 which keeps all hits in TreeH
27 // AddHit, StepManager,and FinishEvent are redefined
29 //*-- Author: Gines MARTINEZ (SUBATECH)
30 //*-- Modified Nov. 22 2000 by Dmitri Peressounko
31 // All hits are stored.
32 // Note, that primaries will not be assigned to digits:
33 // because of tiny energy deposition at each step.
36 // --- ROOT system ---
37 #include "TClonesArray.h"
39 // --- Standard library ---
42 // --- AliRoot header files ---
44 #include "AliPHOSv2.h"
45 #include "AliPHOSHit.h"
49 //____________________________________________________________________________
50 AliPHOSv2::AliPHOSv2()
56 //____________________________________________________________________________
57 AliPHOSv2::AliPHOSv2(const char *name, const char *title):
62 //__________________________________________________________________________
63 AliPHOSv2::~AliPHOSv2()
68 //____________________________________________________________________________
69 AliPHOSv2 & AliPHOSv2::operator = (const AliPHOSv2 &)
71 Fatal("operator =", "not implemented");
75 //____________________________________________________________________________
76 void AliPHOSv2::AddHit(Int_t shunt, Int_t primary, Int_t Id, Float_t * hits)
78 // Add a hit to the hit list.
82 newHit = new AliPHOSHit(shunt, primary, Id, hits) ;
84 new((*fHits)[fNhits]) AliPHOSHit(*newHit) ;