Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:57:17

0001 #ifndef LMFSEXTUPLE_H
0002 #define LMFSEXTUPLE_H
0003 
0004 #include "OnlineDB/EcalCondDB/interface/Tm.h"
0005 
0006 /*
0007  Last updated by  Giovanni.Organtini@roma1.infn.it 2010
0008  */
0009 
0010 /**
0011  *   sextuple of t1, t2, t3, p1, p2, p3
0012  */
0013 class LMFSextuple {
0014 public:
0015   LMFSextuple() {
0016     for (int i = 0; i < 3; i++) {
0017       p[i] = 0;
0018       t[i].setNull();
0019     }
0020   };
0021   float p[3];
0022   Tm t[3];
0023 };
0024 
0025 #endif