CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ROOTFileTransfer.h
Go to the documentation of this file.
1 #ifndef _HCAL_HLX_ROOTFILETRANSFER_H_
2 #define _HCAL_HLX_ROOTFILETRANSFER_H_
3 
4 #include <string>
5 
6 namespace HCAL_HLX{
7 
9  public:
12 
13  void SetFileName( const std::string &fileName ){ fileName_ = fileName; }
14  void SetInputDir( const std::string &dirName ){ dirName_ = dirName; }
15  void SetEtSumOnly( const bool &bEtSumOnly ){ bEtSumOnly_ = bEtSumOnly; }
16  void SetFileType( const std::string &fileType );
17 
18  int TransferFile();
19  private:
20  std::string fileName_;
21  std::string dirName_;
22  std::string fileType_;
23 
25  };
26 }
27 
28 
29 #endif
void SetFileName(const std::string &fileName)
void SetFileType(const std::string &fileType)
void SetInputDir(const std::string &dirName)
void SetEtSumOnly(const bool &bEtSumOnly)