]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/macros/PeakFinder/pfocdbmaker.C
reorder the settings for the merged clusters identification as pi0 analysis
[u/mrichter/AliRoot.git] / EMCAL / macros / PeakFinder / pfocdbmaker.C
1 #include  "AliCaloRawAnalyzerPeakFinder.h"
2 //#include  "AliCaloRawAnalyzerPeakFinder.h"
3
4 #include "AliCaloPeakFinderVectors.h"
5 #define MAXSTART 3
6 #define SAMPLERANGE 15
7 #define SHIF 0.5
8
9
10 void pfocdbmaker()
11 {
12   AliCDBEntry e;
13   AliCaloRawAnalyzerPeakFinder *p = new  AliCaloRawAnalyzerPeakFinder();
14   e.SetObject(p);
15   TFile *f = new TFile("pfvectors.root", "recreate" );
16   //Read in the Peak finder vecors from file
17   p->Write();
18   //  e.Write();
19   f->Close();
20 }
21
22
23
24
25
26