- Aug 05, 2014
-
-
Philippe Canal authored
-
- May 06, 2006
-
-
Rene Brun authored
the change from TRandom to TRandom3. However, there is a problem with DrawTest (to be investigated) git-svn-id: http://root.cern.ch/svn/root/trunk@14940 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 11, 2005
-
-
Rene Brun authored
This patch implements support for the accessing the collection object in TTreeFormula: // Accessing collection objects // ============================ // // TTree::Draw default's handling of collections is to assume that any // request on a collection pertain to it content. For example, if fTracks // is a collection of Track objects, the following: // tree->Draw("event.fTracks.fPx"); // will plot the value of fPx for each Track objects inside the collection. // Also // tree->Draw("event.fTracks.size()"); // would plot the result of the member function Track::size() for each // Track object inside the collection. // To access information about the collection itself, TTree::Draw support // the '@' notation. If a variable which points to a collection is prefixed // or postfixed with '@', the next part of the expression will pertain to // the collection object. For example: // tree->Draw("event.@fTracks.size()"); // will plot the size of the collection refered to by fTracks (i.e the number // of Track objects). git-svn-id: http://root.cern.ch/svn/root/trunk@11309 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 18, 2005
-
-
Fons Rademakers authored
This update improves the error message in case of failure. git-svn-id: http://root.cern.ch/svn/root/trunk@11148 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 30, 2003
-
-
Rene Brun authored
This patch adds systematic test for the ability of TTree::Draw to draw TBits objects. It also fixes all the bug discovered during the tests. It also adds a test for split level 2. git-svn-id: http://root.cern.ch/svn/root/trunk@6011 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 28, 2002
-
-
Rene Brun authored
Use Riostream.h instead of iostream.h git-svn-id: http://root.cern.ch/svn/root/trunk@5696 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 05, 2002
-
-
Rene Brun authored
This update to drawtest does the following: start moving toward using makefile reduce the text printed while running reduce the time as much as possible git-svn-id: http://root.cern.ch/svn/root/trunk@5063 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 01, 2002
-
-
Rene Brun authored
array inside a TClonesArray when the TClonesArray is not split. It also adds a test for reading variable size array inside a TClonesArray. It also fixes a problem recently mentioned on roottalk where the formula for not properly reading variable size array when the variable size was indexed more there was more than one variable in the formula. git-svn-id: http://root.cern.ch/svn/root/trunk@5037 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 04, 2001
-
-
Rene Brun authored
They are now considered by default as an array of numbers. However if they are used with an operator== or an operator!= and if the second argument is also a string, the strcmp function will be used. In addition, a direct call of the function strstr is allowed. The checks and error messages have been improved for both the operator and strstr. This update also corrects the problem where an expression was drawn multiple times when using a fixed length array in string comparaison. git-svn-id: http://root.cern.ch/svn/root/trunk@3390 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 02, 2001
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@2932 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 11, 2001
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@2562 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 10, 2001
-
-
Rene Brun authored
instead of gROOT->ProcessLine(".L libEvent.so") git-svn-id: http://root.cern.ch/svn/root/trunk@2553 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 06, 2001
-
-
Rene Brun authored
To run the test, execute DrawTest.sh. git-svn-id: http://root.cern.ch/svn/root/trunk@2531 27541ba8-7e3a-0410-8455-c3a389f83636
-