Changeset 4966 for trunk/MagicSoft/Mars/mtrigger
- Timestamp:
- 09/13/04 08:57:58 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mtrigger
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtrigger/MTriggerBit.cc
r4264 r4966 17 17 ! 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it>19 ! Author(s): Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it> 20 20 ! 21 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 27 27 // 28 28 // MTriggerBit 29 // 29 30 // This class stores the information about the L2 output Bit rates 30 //31 31 // 32 32 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mtrigger/MTriggerBit.h
r4264 r4966 18 18 19 19 private: 20 21 20 static const Int_t gsNBits=20; // number of output bits 22 21 … … 27 26 { 28 27 fName = "MTriggerBit"; 29 fTitle = " Container for the L2 output bits rates";28 fTitle = "Trigger-Container for the L2 output bits rates"; 30 29 } 31 30 … … 52 51 } 53 52 54 ClassDef(MTriggerBit, 1) // Container for the L2 output bits rates53 ClassDef(MTriggerBit, 1) // Trigger-Container for the L2 output bits rates 55 54 }; 56 55 -
trunk/MagicSoft/Mars/mtrigger/MTriggerCell.cc
r4264 r4966 17 17 ! 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it>19 ! Author(s): Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it> 20 20 ! 21 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 27 27 // 28 28 // MTriggerCell 29 // 29 30 // This class stores the information about the Trigger Cell Rates 30 //31 31 // 32 32 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mtrigger/MTriggerCell.h
r4264 r4966 16 16 { 17 17 friend class MReportTrigger; 18 18 19 private: 19 static const Int_t gsNCells=32; //Number of fields with cell rates 20 // 19 cells and 12 dummy 20 static const Int_t gsNCells=32; //Number of fields with cell rates 19 cells and 12 dummy 21 21 22 TArrayF fCellRate; // Array of the measured L1 cell rates22 TArrayF fCellRate; // Array of the measured L1 cell rates 23 23 24 24 public: … … 26 26 { 27 27 fName = "MTriggerCell"; 28 fTitle = " Container for the measured cell rates";28 fTitle = "Trigger-Container for the measured cell rates"; 29 29 } 30 30 … … 52 52 } 53 53 54 ClassDef(MTriggerCell, 1) // Container for the triggercell rates54 ClassDef(MTriggerCell, 1) // Trigger-Container for the measured cell rates 55 55 }; 56 56 -
trunk/MagicSoft/Mars/mtrigger/MTriggerIPR.cc
r4264 r4966 17 17 ! 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it>19 ! Author(s): Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it> 20 20 ! 21 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 27 27 // 28 28 // MTriggerIPR 29 // 29 30 // This class stores the information about the Individual Pixel Rates 30 //31 31 // 32 32 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mtrigger/MTriggerIPR.h
r4264 r4966 16 16 { 17 17 friend class MReportTrigger; 18 18 19 private: 19 TArrayL fIPR; // [Hz] IPR (Individual Pixel Rates)20 21 20 static const Int_t gsNTrigPix=397; // number of trigger pixels 21 22 TArrayL fIPR; // [Hz] IPR (Individual Pixel Rates) 22 23 23 24 public: … … 25 26 { 26 27 fName = "MTriggerIPR"; 27 fTitle = " Container for the Individual Pixel Rate (IPR)";28 fTitle = "Trigger-Container for the Individual Pixel Rate (IPR)"; 28 29 } 29 30 … … 51 52 } 52 53 53 ClassDef(MTriggerIPR, 1) // Container for the Individual Pixel Rate (IPR)54 ClassDef(MTriggerIPR, 1) // Trigger-Container for the Individual Pixel Rate (IPR) 54 55 }; 55 56 -
trunk/MagicSoft/Mars/mtrigger/MTriggerLiveTime.cc
r4264 r4966 17 17 ! 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it>19 ! Author(s): Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it> 20 20 ! 21 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 27 27 // 28 28 // MTriggerLiveTime 29 // 29 30 // This class stores the information about the livetime and deadtime 30 31 // measured by the scalers -
trunk/MagicSoft/Mars/mtrigger/MTriggerLiveTime.h
r4264 r4966 27 27 { 28 28 fName = "MTriggerLiveTime"; 29 fTitle = " Container for the Live-deadtime";29 fTitle = "Trigger-Container for the Live-deadtime"; 30 30 } 31 31 … … 52 52 } 53 53 54 ClassDef(MTriggerLiveTime, 1) // Container for the Live-Deadtime54 ClassDef(MTriggerLiveTime, 1) // Trigger-Container for the Live-Deadtime 55 55 }; 56 56 -
trunk/MagicSoft/Mars/mtrigger/MTriggerPrescFact.cc
r4264 r4966 17 17 ! 18 18 ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it>19 ! Author(s): Antonio Stamerra, 05/2004 <mailto:antonio.stamerra@pi.infn.it> 20 20 ! 21 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 27 27 // 28 28 // MTriggerPrescFact 29 // 29 30 // This class stores the information about the L2 prescaling factors 30 //31 31 // 32 32 ///////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mtrigger/MTriggerPrescFact.h
r4264 r4966 27 27 { 28 28 fName = "MTriggerPrescFact"; 29 fTitle = " Container for the L2 Prescaling Factors";29 fTitle = "Trigger-Container for the L2 Prescaling Factors"; 30 30 } 31 31 … … 52 52 } 53 53 54 ClassDef(MTriggerPrescFact, 1) // Container for the L2 Prescaling Factors54 ClassDef(MTriggerPrescFact, 1) // Trigger-Container for the L2 Prescaling Factors 55 55 }; 56 56
Note:
See TracChangeset
for help on using the changeset viewer.