/[PAMELA software]/PamCut/CollectionActions/Histo2DActions/Histo2DAction/Histo2DAction.cpp
ViewVC logotype

Annotation of /PamCut/CollectionActions/Histo2DActions/Histo2DAction/Histo2DAction.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Thu Oct 29 09:42:44 2009 UTC (15 years, 1 month ago) by pam-fi
Branch: MAIN
CVS Tags: Root_V8, MergedToHEAD_1, nuclei_reproc, MergedFromV8_1, BeforeMergingFromV8_1, V9, HEAD
Branch point for: V8
Changes since 1.1: +0 -28 lines
Some fixes.

1 pam-fi 1.1 /*
2     * Histo2DAction.cpp
3     *
4     * Created on: 01/set/2009
5     * Author: Nicola Mori
6     */
7    
8     /*! @file Histo2DAction.cpp The Histo2DAction class implementation file. */
9    
10     #include "Histo2DAction.h"
11    
12     template<>
13     void Histo2DAction<Int_t>::_CreateHisto() {
14    
15     _rootHisto = new TH2I();
16     }
17    
18     template<>
19     void Histo2DAction<Float_t>::_CreateHisto() {
20    
21     _rootHisto = new TH2F();
22     }
23    
24     template<>
25     void Histo2DAction<Double_t>::_CreateHisto() {
26    
27     _rootHisto = new TH2D();
28     }
29    

  ViewVC Help
Powered by ViewVC 1.1.23