00001 #ifndef CAFE_FRIEND_HPP__ 00002 #define CAFE_FRIEND_HPP__ 00003 00004 #include <string> 00005 #include "cafe/Processor.hpp" 00006 #include "cafe/FilePattern.hpp" 00007 00008 namespace cafe { 00009 00020 class Friend : public Processor { 00021 public: 00022 Friend(const char *name); 00023 void inputFileOpened(TFile *file); 00024 private: 00025 std::string _fileName; 00026 std::string _treeName; 00027 FilePattern _pattern; 00028 public: 00029 ClassDef(Friend, 0); 00030 }; 00031 00032 } 00033 00034 #endif // CAFE_FRIEND_HPP__
1.3.4