]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TGeant3/TGeant3Dummy.cxx
Adding dummy SetSTRA
[u/mrichter/AliRoot.git] / TGeant3 / TGeant3Dummy.cxx
index a9d062c5f4d691ef5f4871714865d66cc7e09b4a..440a3e7f5fad1f7b3452a92d894fab855ddfd82f 100644 (file)
@@ -1,3 +1,53 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/*
+$Log$
+Revision 1.20  2000/05/16 13:10:41  fca
+New method IsNewTrack and fix for a problem in Father-Daughter relations
+
+Revision 1.19  2000/04/09 19:00:26  fca
+Small corrections left over from removal of AliVMC for G4 compatibility
+
+Revision 1.18  2000/02/28 21:03:57  fca
+Some additions to improve the compatibility with G4
+
+Revision 1.17  2000/02/23 16:25:25  fca
+AliVMC and AliGeant3 classes introduced
+ReadEuclid moved from AliRun to AliModule
+
+Revision 1.16  2000/01/18 16:27:18  morsch
+Dummy definition of Gftmat, Gbrelm and Gprelm added.
+
+Revision 1.15  2000/01/17 19:41:17  fca
+Add SetERAN function
+
+Revision 1.14  1999/11/03 16:31:36  fca
+Dummy ProdProcess should return a value
+
+Revision 1.13  1999/11/03 13:17:08  fca
+Have ProdProcess return const char*
+
+Revision 1.12  1999/11/02 17:05:06  fca
+Update GetSecondary arguments
+
+Revision 1.11  1999/09/29 09:24:31  fca
+Introduction of the Copyright and cvs Log
+
+*/
+
 //////////////////////////////////////////////////////
 //  C++ dummy interface to Geant3 basic routines    //
 //////////////////////////////////////////////////////
@@ -24,34 +74,41 @@ void TGeant3::LoadAddress() {}
 //=======================functions from GBASE
 
 //___________________________________________
+void    TGeant3::FinishGeometry() {}
 void    TGeant3::Gfile(const char*, const char*) {}
 void    TGeant3::GeomIter() {}
 Int_t   TGeant3::CurrentMaterial(Float_t &, Float_t &, Float_t &, Float_t &, Float_t &) const {return 0;}
 Int_t   TGeant3::NextVolUp(Text_t*, Int_t&) {return 0;}
-Int_t   TGeant3::CurrentVol(Text_t*, Int_t&) const {return 0;}
+Int_t   TGeant3::CurrentVolID(Int_t&) const {return 0;}
+const char*  TGeant3::CurrentVolName() const {return 0;}
+Float_t TGeant3::Xsec(char*, Float_t, Int_t, Int_t) {return 0;}
 Int_t   TGeant3::NofVolumes() const {return 0;}
-Int_t   TGeant3::CurrentVolOff(Int_t, Text_t*, Int_t&) const {return 0;}
-void    TGeant3::TrackPosition(Float_t*) const {}
-void    TGeant3::TrackMomentum(Float_t*) const {}
-Int_t   TGeant3::IdFromPDG(Int_t pdg) const {return -1;}
-Int_t   TGeant3::PDGFromId(Int_t pdg) const {return -1;}
+Int_t   TGeant3::CurrentVolOffID(Int_t, Int_t&) const {return 0;}
+const char *TGeant3::CurrentVolOffName(Int_t) const {return 0;}
+void    TGeant3::TrackPosition(TLorentzVector&) const {}
+void    TGeant3::TrackMomentum(TLorentzVector&) const {}
+Int_t   TGeant3::IdFromPDG(Int_t) const {return -1;}
+Int_t   TGeant3::PDGFromId(Int_t) const {return -1;}
 void    TGeant3::DefineParticles() {}
-Int_t   TGeant3::VolId(Text_t*) const {return 0;}
+Int_t   TGeant3::VolId(const Text_t*) const {return 0;}
+void    TGeant3::SetCut(const char* , Float_t ) {}
+void    TGeant3::SetProcess(const char* , Int_t ) {}
 const char*   TGeant3::VolName(Int_t ) const {return 0;}
 Float_t TGeant3::TrackCharge() const {return 0;}
 Float_t TGeant3::TrackMass() const {return 0;}
-Bool_t  TGeant3::TrackInside() const {return 0;}
-Bool_t  TGeant3::TrackEntering() const {return 0;}
-Bool_t  TGeant3::TrackExiting() const {return 0;}
-Bool_t  TGeant3::TrackOut() const {return 0;}
-Bool_t  TGeant3::TrackDisappear() const {return 0;}
-Bool_t  TGeant3::TrackStop() const {return 0;}
+Bool_t  TGeant3::IsNewTrack() const {return 0;}
+Bool_t  TGeant3::IsTrackInside() const {return 0;}
+Bool_t  TGeant3::IsTrackEntering() const {return 0;}
+Bool_t  TGeant3::IsTrackExiting() const {return 0;}
+Bool_t  TGeant3::IsTrackOut() const {return 0;}
+Bool_t  TGeant3::IsTrackDisappeared() const {return 0;}
+Bool_t  TGeant3::IsTrackStop() const {return 0;}
 Int_t   TGeant3::NSecondaries() const {return 0;}
-void    TGeant3::ProdProcess(char*) const {}
-void    TGeant3::GetSecondary(Int_t, Int_t&, Float_t*, Float_t*){}
+const char* TGeant3::ProdProcess() const {return 0;}
+void    TGeant3::GetSecondary(Int_t, Int_t&, 
+                             TLorentzVector&, TLorentzVector&){}
 Float_t TGeant3::MaxStep() const {return 0;}
 void    TGeant3::SetMaxStep(Float_t ) {}
-void    TGeant3::GetParticle(const Int_t, char*, Float_t&) const {}
 Int_t   TGeant3::CurrentEvent() const {return 0;}
 Int_t   TGeant3::GetMedium() const {return 0;}
 Float_t TGeant3::Edep() const {return 0;}
@@ -61,11 +118,10 @@ Float_t TGeant3::TrackStep() const {return 0;}
 Float_t TGeant3::TrackLength() const {return 0;}
 Float_t TGeant3::TrackTime() const {return 0;}
 Int_t   TGeant3::TrackPid() const {return 0;}
-Bool_t  TGeant3::TrackAlive() const {return 0;}
+Bool_t  TGeant3::IsTrackAlive() const {return 0;}
 void    TGeant3::StopTrack() {}
 void    TGeant3::StopEvent() {}
 void    TGeant3::SetMaxNStep(Int_t) {}
-void    TGeant3::SetColors() {}
 Int_t   TGeant3::GetMaxNStep() const {return 0;}
 void    TGeant3::Material(Int_t&, const char*, Float_t, Float_t, Float_t, Float_t,
                          Float_t, Float_t*, Int_t){}
@@ -99,6 +155,11 @@ void  TGeant3::Gfpart(Int_t, char*, Int_t&, Float_t&, Float_t&, Float_t&){}
 //___________________________________________
 void  TGeant3::Gftmed(Int_t, char*, Int_t&, Int_t&, Int_t&, Float_t&, Float_t&,
                     Float_t&, Float_t&, Float_t&, Float_t&, Float_t*, Int_t*){}
+void  TGeant3::Gftmat(Int_t imate, Int_t ipart, char *chmeca, Int_t kdim,
+                        Float_t* tkin, Float_t* value, Float_t* pcut, Int_t &ixst){}
+Float_t TGeant3::Gbrelm(Float_t z, Float_t t, Float_t cut){return (Float_t) 0;}
+Float_t TGeant3::Gprelm(Float_t z, Float_t t, Float_t cut){return (Float_t) 0;}
+
 
 //___________________________________________
 void  TGeant3::Gmate() {}
@@ -170,6 +231,7 @@ void  TGeant3::Gsatt(const char*, const char*, Int_t) {}
 void  TGeant3::Gfpara(const char*, Int_t, Int_t, Int_t&, Int_t&, Float_t*, Float_t*) {}
 void  TGeant3::Gckpar(Int_t, Int_t, Float_t*) {}
 void  TGeant3::Gckmat(Int_t, char*) {}
+void  TGeant3::BuildPhysics() {}
 
 //______________________________________________________________________________
 void TGeant3::Streamer(TBuffer &R__b)
@@ -222,6 +284,7 @@ void TGeant3::SetCUTS(Float_t,Float_t,Float_t,Float_t,
 void TGeant3::SetDCAY(Int_t)  {}
 void TGeant3::SetDEBU(Int_t, Int_t, Int_t)  {}
 void TGeant3::SetDRAY(Int_t)  {}
+void TGeant3::SetERAN(Float_t, Float_t, Int_t) {}
 void TGeant3::SetHADR(Int_t)  {}
 void TGeant3::SetKINE(Int_t, Float_t, Float_t, Float_t, Float_t,
                      Float_t, Float_t, Float_t, Float_t, Float_t,
@@ -234,11 +297,18 @@ void TGeant3::SetPAIR(Int_t)  {}
 void TGeant3::SetPFIS(Int_t)  {}
 void TGeant3::SetPHOT(Int_t)  {}
 void TGeant3::SetRAYL(Int_t)  {}
+void TGeant3::SetSTRA(Int_t)  {}
 void TGeant3::SetSWIT(Int_t , Int_t)  {}
 void TGeant3::SetTRIG(Int_t)  {}
 void TGeant3::SetUserDecay(Int_t) {}
 void TGeant3::Vname(const char *, char *) {}
 void TGeant3::InitLego() {}
+void TGeant3::Ertrgo() {}
+void TGeant3::Ertrak(const Float_t *const , const Float_t *const , 
+                    const Float_t *, const Float_t *,
+                    Int_t ,  Option_t *) {}
+
+        
 
 
 #include "AliCallf77.h"