Skip to content

Commit bcf1393

Browse files
committed
chore(FairFileSource): Cleanup fCurrentEntryNr
Removed unused private member fCurrentEntryNr. All throughout the code fCurrentEntryNo is used.
1 parent 5f0fac4 commit bcf1393

2 files changed

Lines changed: 0 additions & 5 deletions

File tree

fairroot/base/source/FairFileSource.cxx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ FairFileSource::FairFileSource(TFile* f, const char* Title, UInt_t)
4646
: FairFileSourceBase()
4747
, fInputTitle(Title)
4848
, fRootFile(f)
49-
, fCurrentEntryNr(0)
5049
, fFriendFileList()
5150
, fInputChainList()
5251
, fFriendTypeList()
@@ -85,7 +84,6 @@ FairFileSource::FairFileSource(const TString* RootFileName, const char* Title, U
8584
: FairFileSourceBase()
8685
, fInputTitle(Title)
8786
, fRootFile(0)
88-
, fCurrentEntryNr(0)
8987
, fFriendFileList()
9088
, fInputChainList()
9189
, fFriendTypeList()
@@ -125,7 +123,6 @@ FairFileSource::FairFileSource(const TString RootFileName, const char* Title, UI
125123
: FairFileSourceBase()
126124
, fInputTitle(Title)
127125
, fRootFile(0)
128-
, fCurrentEntryNr(0)
129126
, fFriendFileList()
130127
, fInputChainList()
131128
, fFriendTypeList()

fairroot/base/source/FairFileSource.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ class FairFileSource : public FairFileSourceBase
115115
TString fInputTitle;
116116
/**ROOT file*/
117117
TFile* fRootFile;
118-
/** Current Entry number */
119-
Int_t fCurrentEntryNr; //!
120118
/** List of all files added with AddFriend */
121119
std::list<TString> fFriendFileList; //!
122120
std::list<TString> fInputChainList; //!

0 commit comments

Comments
 (0)