Skip to content

Commit e847494

Browse files
ferdymercurylinev
authored andcommitted
1 parent 988affc commit e847494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roottest/root/tree/array/execStdArray.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
void CreateTreeWithStdArray(){
2-
TFile f("test.root", "RECREATE");
2+
TFile f("testStdArray.root", "RECREATE");
33
TTree t("tree", "tree");
44
std::array<Double_t,3> arr;
55
arr[0] = 10.1;
@@ -14,7 +14,7 @@ void CreateTreeWithStdArray(){
1414
int execStdArray()
1515
{
1616
CreateTreeWithStdArray();
17-
TFile f("test.root", "READ");
17+
TFile f("testStdArray.root", "READ");
1818
TTree *t = f.Get<TTree>("tree");
1919
if (!t) {
2020
Error("execStdArray","Could not find the TTree 'tree'");

0 commit comments

Comments
 (0)