forked from marcpaterno/gallery-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalyze.hh
More file actions
36 lines (30 loc) · 1.06 KB
/
analyze.hh
File metadata and controls
36 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef ANALYZE_HH
#define ANALYZE_HH
#include "canvas/Utilities/InputTag.h"
#include "gallery/Event.h"
// We need to that TH1F names a class, but we don't need to know more
// about that class here.
class TH1F;
class TH2F;
void
analyze_mctruths(gallery::Event const& ev,
art::InputTag const& mctruth_tag,
TH1F& hist);
void
analyze_vertices(gallery::Event const& ev,
art::InputTag const& vertices_tag,
TH1F& xhist,
TH1F& yhist,
TH1F& zhist,
TH2F& xyhist);
void
analyze_vertex_cluster_correlations(gallery::Event const& ev,
art::InputTag const& vertices_tag,
art::InputTag const& assns_tag,
TH2F& hist);
void
analyze_cluster_hit_correlations(gallery::Event const& ev,
art::InputTag const& clusters_tag,
art::InputTag const& assns_tag,
TH2F& hist);
#endif