Skip to content

Commit

Permalink
Fixed nullÃpointer
Browse files Browse the repository at this point in the history
  • Loading branch information
andresti committed Jun 25, 2018
1 parent f1e314f commit 280afbd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion interface/ComposableSelector.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <chrono>

//using namespace std::chrono;
using namespace std;

template <class EventClass> class ComposableSelector : public TSelector {

Expand All @@ -43,7 +44,9 @@ template <class EventClass> class ComposableSelector : public TSelector {
// associated with a TTree
TTreeReader reader_;
// to save output
TFile * tfile_{ nullptr};
//std::cout << "NULLPTR" << std::endl;
TFile * tfile_;
//std::cout << "NULLPTR passed" << std::endl;

// to save selector/event configuration
json config_;
Expand Down

0 comments on commit 280afbd

Please sign in to comment.