git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Type of fFileName changed to TString, fp has been !-ed.
[u/mrichter/AliRoot.git]
/
EVGEN
/
AliGenHalo.h
diff --git
a/EVGEN/AliGenHalo.h
b/EVGEN/AliGenHalo.h
index de2d8903c417c01ee3d715a151012d93f5bf0735..1811dfdb2b0bd8b1e920e66aafb18d8e82756151 100644
(file)
--- a/
EVGEN/AliGenHalo.h
+++ b/
EVGEN/AliGenHalo.h
@@
-1,31
+1,30
@@
-#ifndef AliGenHalo_H
-#define AliGenHalo_H
-/////////////////////////////////////////////////////////
-// Manager and hits classes for set:MUON version 0 //
-/////////////////////////////////////////////////////////
-#include "AliGenerator.h"
-#include "TNamed.h"
-#include "TF1.h"
-#include "TArrayF.h"
-#include "TTree.h"
+#ifndef ALIGENHALO_H
+#define ALIGENHALO_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice */
+
+/* $Id$ */
+
+#include "AliGenerator.h"
+#include <TString.h>
// Read background particles from a FLUKA boundary source file
class AliGenHalo : public AliGenerator
{
// Read background particles from a FLUKA boundary source file
class AliGenHalo : public AliGenerator
{
-
-protected:
- FILE *fp;
- const Text_t *fFileName; //Choose the file
-
public:
AliGenHalo();
AliGenHalo(Int_t npart);
public:
AliGenHalo();
AliGenHalo(Int_t npart);
+ AliGenHalo(const AliGenHalo &Halo);
virtual ~AliGenHalo();
virtual void Init();
virtual ~AliGenHalo();
virtual void Init();
- virtual void SetFileName(
const Text_t *filname) {fFileName=filname
;}
+ virtual void SetFileName(
TString filename) {fFileName=TString(filename)
;}
virtual void Generate();
virtual void Generate();
- ClassDef(AliGenHalo,1)
+ AliGenHalo & operator=(const AliGenHalo & rhs);
+protected:
+ FILE *fp; // ! Pointer to file
+ TString fFileName; // Choose the file
+ ClassDef(AliGenHalo,1) // LHC background boundary source (MARS input)
};
#endif
};
#endif