Skip to content
Snippets Groups Projects
Commit b56eb051 authored by Philippe Canal's avatar Philippe Canal
Browse files

The old style split branch do not store Double32_t with annotation with the...

The old style split branch do not store Double32_t with annotation with the same precision. since the interface is deprecated skip the test


git-svn-id: http://root.cern.ch/svn/root/trunk@21240 27541ba8-7e3a-0410-8455-c3a389f83636
parent 3a607875
Branches
Tags
No related merge requests found
...@@ -132,13 +132,13 @@ TDirectory* GenerateDrawHist(TTree *tree, int quietLevel = 0, int level = 3) ...@@ -132,13 +132,13 @@ TDirectory* GenerateDrawHist(TTree *tree, int quietLevel = 0, int level = 3)
DrawSkippable(tree,"fMatrix[][] - fVertex[][]","hFullOper2"); DrawSkippable(tree,"fMatrix[][] - fVertex[][]","hFullOper2");
// Test on variable arrays // Test on variable arrays
DrawSkippable(tree,"fClosestDistance","hClosestDistance"); DrawSkippable(tree,"fClosestDistance","hClosestDistance",gBranchStyle!=0);
DrawSkippable(tree,"fClosestDistance[2]","hClosestDistance2"); DrawSkippable(tree,"fClosestDistance[2]","hClosestDistance2",gBranchStyle!=0);
DrawSkippable(tree,"fClosestDistance[9]","hClosestDistance9"); DrawSkippable(tree,"fClosestDistance[9]","hClosestDistance9",gBranchStyle!=0);
// Test variable indexing // Test variable indexing
DrawSkippable(tree,"fClosestDistance[fNvertex/2]","hClosestDistanceIndex", DrawSkippable(tree,"fClosestDistance[fNvertex/2]","hClosestDistanceIndex",
(level>0)); (level>0)&&gBranchStyle!=0);
DrawSkippable(tree,"fPx:fPy[fNpoint/6]","fPy[fNpoint/6]>0","hPxInd",(level>0)); DrawSkippable(tree,"fPx:fPy[fNpoint/6]","fPy[fNpoint/6]>0","hPxInd",(level>0));
// Test of simple function calls // Test of simple function calls
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment