- Dec 04, 2002
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5733 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 26, 2002
-
-
Rene Brun authored
"on Nick's request I have added the two methods Pymass and Pychge to TPythia6. Also ImportParticles is called after a Pyedit call." git-svn-id: http://root.cern.ch/svn/root/trunk@5671 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 16, 2002
-
-
Rene Brun authored
of the common block /pydat3/. The new definition is struct Pydat3_t { int MDCY[3][500]; int MDME[2][KNDCAY]; double BRAT[KNDCAY]; int KFDP[5][KNDCAY]; }; instead of: struct Pydat3_t { int MDCY[3][500]; int MDME[2][4000]; double BRAT[4000]; int KFDP[5][4000]; }; where KNDCAY=8000. To run with the previous version of Pythia5.1, simply change KNDCAY from 8000 to 4000. git-svn-id: http://root.cern.ch/svn/root/trunk@5603 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 13, 2002
-
-
Rene Brun authored
implementation file. Add support for Windows git-svn-id: http://root.cern.ch/svn/root/trunk@5578 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 21, 2002
-
-
Rene Brun authored
I had problems using ImportParticles with the "Final" option. When writing the "particle" branch with TTree::Fill it crashed whereas when using the "All" option the same macro work (macro is attached). Looping over the particles in the TClonesArray works perfectly in both cases (particles->Print()). I "solved" the problem changing the TPythia6::ImportParticles in the following way: The dummy index i is always incremented regardless whether a particle was "final" or not. Introducing a variable which actually counts the particles that were inserted into the TClonesArray apparently works git-svn-id: http://root.cern.ch/svn/root/trunk@5446 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 06, 2001
-
-
Rene Brun authored
The test on "Final" particles was not correct. git-svn-id: http://root.cern.ch/svn/root/trunk@1909 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 01, 2001
-
-
Rene Brun authored
Fix some typos. git-svn-id: http://root.cern.ch/svn/root/trunk@1502 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 26, 2001
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@1468 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 13, 2000
-
-
Rene Brun authored
================================================================== A very long list of changes in this pre-release of version 3.00. We have modified the signature of many functions (in particular TObject) to introduce more constness in the system. You must change your code if your class derives from TObject and uses one of the modified functions such as ls, Print, Compare, Hash, etc. The modified functions in TObject have the following signature: virtual TObject *Clone() const; virtual Int_t Compare(const TObject *obj) const; virtual void Delete(Option_t *option=""); // *MENU* virtual void DrawClass() const; // *MENU* virtual void DrawClone(Option_t *option="") const; // *MENU* virtual void Dump() const; // *MENU* virtual TObject *FindObject(const TObject *obj) const; virtual char *GetObjectInfo(Int_t px, Int_t py) const; virtual ULong_t Hash() const; virtual void Inspect() const; // *MENU* virtual Bool_t IsEqual(const TObject *obj) const; virtual void ls(Option_t *option="") const; virtual void Print(Option_t *option="") const; A similar operation has been done with classes such as TH1, TVirtualPad, TTree, etc. git-svn-id: http://root.cern.ch/svn/root/trunk@1205 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 09, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@1144 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 30, 2000
-
-
Rene Brun authored
Was importing one more particle. Code was correct in TPythia. Thanks Patrice Lebrun for reporting. git-svn-id: http://root.cern.ch/svn/root/trunk@838 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 08, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@725 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 29, 2000
-
-
Fons Rademakers authored
generated for the dictionary files (G__*). This caused dictionaries including modified headers not to be rebuild. git-svn-id: http://root.cern.ch/svn/root/trunk@410 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 11, 2000
-
-
Rene Brun authored
The loop when importing particles should be: for (Int_t i = 0; i<numpart; i++) { instead of for (Int_t i = 0; i<=numpart; i++) { git-svn-id: http://root.cern.ch/svn/root/trunk@356 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 01, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@311 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@310 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@309 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@308 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 22, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@268 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 21, 2000
-
-
Rene Brun authored
generated. git-svn-id: http://root.cern.ch/svn/root/trunk@262 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 21, 2000
-
-
Fons Rademakers authored
Reduce library dependencies in Module.mk\'s except for platforms that require explicit linking (AIX and Win32) git-svn-id: http://root.cern.ch/svn/root/trunk@25 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 16, 2000
-
-
Fons Rademakers authored
which included commits to RCS files with non-trunk default branches. git-svn-id: http://root.cern.ch/svn/root/trunk@3 27541ba8-7e3a-0410-8455-c3a389f83636
-