- Apr 18, 2012
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@43825 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 06, 2012
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@43262 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 05, 2012
-
-
Bertrand Bellenot authored
Fix g++ parameters order. gcc 4.6+ requires the libraries to be placed (correctly) at the end after the object files are listed. (reported on the forum: http://root.cern.ch/phpBB3/viewtopic.php?t=14289) git-svn-id: http://root.cern.ch/svn/root/trunk@43244 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 29, 2012
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@43170 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 11, 2012
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42596 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 01, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42353 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42352 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42350 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42344 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 30, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42331 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42330 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42329 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42328 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
http://root.cern.ch/phpBB3/viewtopic.php?f=10&t=13795 git-svn-id: http://root.cern.ch/svn/root/trunk@42327 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
http://root.cern.ch/phpBB3/viewtopic.php?f=10&t=13771 - Make sure the code examples do no start with a blank line - Remove the useless <code></code> in <programlisting> - Make sure the listings do not exit the grey boxes git-svn-id: http://root.cern.ch/svn/root/trunk@42326 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
- Make sure the code examples do no start with a blank line - Remove te useless <code></code> in <programlisting> - Make sure the listings do exist the grey boxes - Fix formatting mistakes. git-svn-id: http://root.cern.ch/svn/root/trunk@42323 27541ba8-7e3a-0410-8455-c3a389f83636
-
Andrei Gheata authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42317 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 03, 2011
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41096 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 17, 2011
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40617 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 11, 2011
-
-
Philippe Canal authored
always returns an already constructed object. If the slot is being used for the first time, it calls the default constructor otherwise it returns the object as is (unless a string is passed as the 2nd argument to the function in which case, it also calls Clear(second_argument) on the object). This allows replace code like: for (int i = 0; i < ev->Ntracks; i++) { new(a[i]) TTrack(x,y,z,...); ... ... } ... a.Delete(); // or a.Clear("C") with the simpler and more efficient: for (int i = 0; i < ev->Ntracks; i++) { TTrack *track = (TTrack*)a.ConstructedAt(i); track->Set(x,y,z,....); ... ... } ... a.Clear(); even in case where the TTrack class allocates memory. git-svn-id: http://root.cern.ch/svn/root/trunk@40562 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 10, 2011
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40543 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 04, 2011
-
-
Olivier Couet authored
http://root.cern.ch/phpBB3/viewtopic.php?f=10&t=13028 git-svn-id: http://root.cern.ch/svn/root/trunk@40113 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 24, 2011
-
-
Olivier Couet authored
- More clean up git-svn-id: http://root.cern.ch/svn/root/trunk@39947 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39929 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 21, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39859 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 20, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39837 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39830 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39829 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39828 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 10, 2011
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39660 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 09, 2011
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39629 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 07, 2011
-
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39574 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 06, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39562 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 01, 2011
-
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39530 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39529 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 31, 2011
-
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39508 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39507 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39506 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39496 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 20, 2011
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39306 27541ba8-7e3a-0410-8455-c3a389f83636
-