Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:32

0001 #ifndef FWLite_BranchToClass_h
0002 #define FWLite_BranchToClass_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWLite
0006 // Class  :     BranchToClass
0007 //
0008 /**\class BranchToClass BranchToClass.h FWCore/FWLite/interface/BranchToClass.h
0009 
0010  Description: Given a TBranch it will return the TClass of the class type stored in the branch
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Wed Aug  2 09:04:02 EDT 2006
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 class TClass;
0027 class TBranch;
0028 
0029 TClass* branchToClass(const TBranch* iBranch);
0030 
0031 #endif