Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:37

0001 #ifndef MuScleFitProvenance_h
0002 #define MuScleFitProvenance_h
0003 
0004 #include <TObject.h>
0005 
0006 /**
0007  * This class is used to store some provenance information about the tree.
0008  */
0009 
0010 class MuScleFitProvenance : public TObject {
0011 public:
0012   MuScleFitProvenance() {}
0013 
0014   MuScleFitProvenance(const int inputMuonType) : muonType(inputMuonType) {}
0015 
0016   int muonType;
0017 
0018   ClassDef(MuScleFitProvenance, 1)
0019 };
0020 ClassImp(MuScleFitProvenance);
0021 
0022 #endif