Changeset 2229 for trunk/MagicSoft/Mars/mraw
- Timestamp:
- 06/24/03 15:01:48 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
r2207 r2229 213 213 // "GRAPH" A graph is drawn 214 214 // "HIST" A histogram is drawn 215 // number The pixel with the given numberis drawn215 // <index> The pixel with the given index is drawn 216 216 // 217 217 void MRawEvtData::Draw(Option_t *opt) … … 279 279 { 280 280 // FIXME: Add Legend 281 *fLog << "Drawing Histogram of Pixel with Idx " << pix.GetPixelId() << endl;282 283 TH1F *histh = new TH1F(name, "FADC Samples", 281 *fLog << "Drawing Histogram of Pixel with Idx #" << pix.GetPixelId() << endl; 282 283 TH1F *histh = new TH1F(name, "FADC Samples", nh, -0.5, nh-.5); 284 284 histh->SetXTitle("Time [FADC Slices]"); 285 285 histh->SetYTitle("Signal [FADC Units]"); -
trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.cc
r2207 r2229 187 187 } 188 188 189 // -------------------------------------------------------------------------- 190 // 191 // Returns the variance (sigma^2) of the HiGainSamples 192 // 189 193 Float_t MRawEvtPixelIter::GetVarHiGainSamples() const 190 194 { … … 203 207 } 204 208 209 // -------------------------------------------------------------------------- 210 // 211 // Returns the index of the FADC slice the maximum signal in 212 // 205 213 Byte_t MRawEvtPixelIter::GetNumMaxHiGainSample() const 206 214 {
Note:
See TracChangeset
for help on using the changeset viewer.