- Jun 17, 2011
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39810 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 02, 2011
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39547 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 18, 2011
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@38509 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 04, 2010
-
-
Fons Rademakers authored
as in the latter call the normal or unzip cache is being created. git-svn-id: http://root.cern.ch/svn/root/trunk@32212 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 06, 2009
-
-
Rene Brun authored
-no need to set a MaxTreeSize -no need to OptimizeBaskets since it happens now automatically when filling. -when reading use the default value for the cache git-svn-id: http://root.cern.ch/svn/root/trunk@31005 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 29, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30911 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 05, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30557 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 17, 2009
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30225 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 15, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@30162 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 27, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@29929 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 12, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@29759 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
and no 3d view exist. This fixes : http://savannah.cern.ch/bugs/?54251 git-svn-id: http://root.cern.ch/svn/root/trunk@29758 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 26, 2008
-
-
Rene Brun authored
fix a shadowed variable git-svn-id: http://root.cern.ch/svn/root/trunk@25960 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 08, 2008
-
-
Rene Brun authored
Add new option to run with parallel unzipping in a separate thread. To run it do Event 5000 1 99 1 (to write the file Event.root) Event 5000 1 99 20 (to read normal without a thread) Event 5000 1 99 21 (to read with the parallelp unzipping thread) Send the results to rootdev@root.cern.ch git-svn-id: http://root.cern.ch/svn/root/trunk@23762 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 19, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19826 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19825 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 21, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18838 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 02, 2005
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@13461 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Need to investigate why Event complains in case of split < 2 git-svn-id: http://root.cern.ch/svn/root/trunk@13459 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@13449 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 12, 2005
-
-
Rene Brun authored
A) Support for top level STL Containers. You can now do list<int> *ptr = new list<int>; tree->Branch("mystl","list<int>",&ptr); B) Autodetection of the pointer type passed to the branch constructor. So you can now do: list<int> *ptr = new list<int>; tree->Branch("mystl",&ptr); C) Check of the type of the pointer type passed to the branch constructor. So that you now get an error: list<int> *ptr = new list<int>; tree->Branch("mystl","list<float>",&ptr); Error in <TTree::Branch>: The class requested (list<float>) for the branch "mystl" is different from the type of the pointer passed (list<int>) D) TTree's SetBranchAddress now also check its input address (unless the user explicitly specify (char*) or (void*). Test/Event and the tree tutorials have been updated to take advantage of the new syntax. git-svn-id: http://root.cern.ch/svn/root/trunk@10898 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 30, 2003
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@7817 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
a Tree as big as 2 Terabytes (if the system can do it). For example try the following: Event 100000 0 7 1 This should create a Tree of size 7.6 Gigabytes git-svn-id: http://root.cern.ch/svn/root/trunk@7815 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 13, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5577 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 17, 2002
-
-
Rene Brun authored
Use tree.GetCurrentFile() to close the file. git-svn-id: http://root.cern.ch/svn/root/trunk@5144 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 24, 2002
-
-
Fons Rademakers authored
is necessary because on Windows which is case insensitive IOStream.h hides the real iostream.h. git-svn-id: http://root.cern.ch/svn/root/trunk@3748 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 23, 2002
-
-
Fons Rademakers authored
and IOStream.h in the source instead of <iostream[.h]>, <fstream[.h]> and <iomanip[.h]>. git-svn-id: http://root.cern.ch/svn/root/trunk@3742 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 22, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@3732 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 19, 2001
-
-
Rene Brun authored
There is a typo in MainEvent.cxx that prevents it from producing the correct result in the case where split is less than 0. git-svn-id: http://root.cern.ch/svn/root/trunk@3251 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 07, 2001
-
-
Rene Brun authored
Remove the scope TGraphSmooth:: in front of the static functions calls to avoid problems in the html code generation. git-svn-id: http://root.cern.ch/svn/root/trunk@2994 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 05, 2001
-
-
Rene Brun authored
The following members have been added to Event.h TRefArray *fHighPt; //array of High Pt tracks only TRefArray *fMuons; //array of Muon tracks only TRef fLastTrack; //pointer to last track In MainEvent (write part) the two arrays are filled in the loop making the tracks. fLastTrack is set directly in AddTrack. Split mode can be used to store in separate branches the original tracks and the two selected track arrays. Only one copy of a track is stored in the file. When the file is read back, one can read in any order the TClonesArray of tracks or the other arrays. If the array fMuons is read and the TClonesArray branches are not read, fMuons->At(i) will return 0. When the TClonesArray is read, fMuons->at(i) will return a pointer to the selected track number i in the TRefArray fMuons. This will point directly to one of the tracks in the TClonesArray. Note that the branches fHighPt, fMuons and fLastTrack could also be stored in separate files (may be friends of the master file). git-svn-id: http://root.cern.ch/svn/root/trunk@2987 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 09, 2001
-
-
Rene Brun authored
// if split = 0 only one single branch is created and the complete event // is serialized in one single buffer. // if split = -2 the event is split using the old TBranchObject mechanism // if split = -1 the event is streamed using the old TBranchObject mechanism // if split > 0 the event is split ising the new TBranchElement mechanism. git-svn-id: http://root.cern.ch/svn/root/trunk@2548 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 24, 2001
-
-
Rene Brun authored
By default Event uses the new branch style. To use the old branch style, specify teh split value negative, eg: Event 200 0 -1 1 generates 200 events in the old split mode. git-svn-id: http://root.cern.ch/svn/root/trunk@2070 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 20, 2001
-
-
Fons Rademakers authored
system loads libCore.so. Also removed TROOT.h in several programs. git-svn-id: http://root.cern.ch/svn/root/trunk@2028 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 12, 2001
-
-
Rene Brun authored
branch styles. git-svn-id: http://root.cern.ch/svn/root/trunk@1979 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 11, 2001
-
-
Rene Brun authored
Modify stress9 to set the split level to 9 in view of the new branch style. git-svn-id: http://root.cern.ch/svn/root/trunk@1968 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 14, 2001
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@1817 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 21, 2001
-
-
Rene Brun authored
for classes in a TClonesArray. git-svn-id: http://root.cern.ch/svn/root/trunk@1644 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 09, 2001
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@1571 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
This new function can be used to dynamically switch on/off functions in the context menu. So far, only functions for which a comment fiels such as *MENU* or *TOGGLE* were selected in the context menu. git-svn-id: http://root.cern.ch/svn/root/trunk@1565 27541ba8-7e3a-0410-8455-c3a389f83636
-