/[PAMELA software]/PamCut/doc/Doxygen/latex/classCollectionAction.tex
ViewVC logotype

Contents of /PamCut/doc/Doxygen/latex/classCollectionAction.tex

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download) (as text)
Fri Sep 25 15:44:48 2009 UTC (15 years, 6 months ago) by pam-fi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
File MIME type: application/x-tex
FILE REMOVED
Removed from repository.

1 \hypertarget{classCollectionAction}{
2 \section{CollectionAction Class Reference}
3 \label{classCollectionAction}\index{CollectionAction@{CollectionAction}}
4 }
5 An abstract class that defines the interface of a generic collection action.
6
7
8 {\tt \#include $<$CollectionAction.h$>$}
9
10 Inheritance diagram for CollectionAction::\begin{figure}[H]
11 \begin{center}
12 \leavevmode
13 \includegraphics[height=1.4359cm]{classCollectionAction}
14 \end{center}
15 \end{figure}
16 \subsection*{Public Member Functions}
17 \begin{CompactItemize}
18 \item
19 \hyperlink{classCollectionAction_35e6d0d0351e0fafe4b508faeb3598d6}{CollectionAction} (const char $\ast$actionName)
20 \begin{CompactList}\small\item\em Constructor. \item\end{CompactList}\item
21 \hypertarget{classCollectionAction_d327a6cfdc6148db563ae52aa004e098}{
22 virtual \hyperlink{classCollectionAction_d327a6cfdc6148db563ae52aa004e098}{$\sim$CollectionAction} ()}
23 \label{classCollectionAction_d327a6cfdc6148db563ae52aa004e098}
24
25 \begin{CompactList}\small\item\em Destructor. \item\end{CompactList}\item
26 virtual void \hyperlink{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}{Setup} (PamLevel2 $\ast$events)
27 \begin{CompactList}\small\item\em The initialization routine. \item\end{CompactList}\item
28 virtual void \hyperlink{classCollectionAction_077319900b1cde36b6baca9e6699ec5a}{OnGood} (PamLevel2 $\ast$event)
29 \begin{CompactList}\small\item\em Routine for selected events. \item\end{CompactList}\item
30 virtual void \hyperlink{classCollectionAction_ef4ee9fd63c0d232e90694e068e6e339}{OnBad} (PamLevel2 $\ast$event, int selectionResult)
31 \begin{CompactList}\small\item\em Routine for discarded events. \item\end{CompactList}\item
32 virtual void \hyperlink{classCollectionAction_3644c42bef3002c44202b6e9630bc1a4}{Finalize} ()
33 \begin{CompactList}\small\item\em The finalization routine. \item\end{CompactList}\item
34 \hypertarget{classCollectionAction_96783ca0685b2095bf519c17a057c926}{
35 const char $\ast$ \hyperlink{classCollectionAction_96783ca0685b2095bf519c17a057c926}{GetName} ()}
36 \label{classCollectionAction_96783ca0685b2095bf519c17a057c926}
37
38 \begin{CompactList}\small\item\em Returns the action name. \item\end{CompactList}\end{CompactItemize}
39
40
41 \subsection{Detailed Description}
42 An abstract class that defines the interface of a generic collection action.
43
44 The \hyperlink{classCollectionAction}{CollectionAction} abstract class defines an interface for a generic action object which can be used to implement common actions that can be done by collections, like filling histograms or saving selected events. The structure of this class mimicks that of a standard collection: it has a \hyperlink{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}{Setup()} and a \hyperlink{classCollectionAction_3644c42bef3002c44202b6e9630bc1a4}{Finalize()} methods that are meant to be called at the beginning and at the end of the selection procedure, respectively. In \hyperlink{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}{Setup()} one can prepare the analysis actions like instantiating a histogram object (this can be done also in the constructor), while in \hyperlink{classCollectionAction_3644c42bef3002c44202b6e9630bc1a4}{Finalize()} the analysis can be closed by, eg., writing histograms on a file and closing that file. The two methods \hyperlink{classCollectionAction_077319900b1cde36b6baca9e6699ec5a}{OnGood()} and \hyperlink{classCollectionAction_ef4ee9fd63c0d232e90694e068e6e339}{OnBad()} have exactly the same purpose they have in a Collection: to define action to perform each time an event is selected as good or bad. The class \hyperlink{classSmartCollection}{SmartCollection} is specially designed to handle \hyperlink{classCollectionAction}{CollectionAction} objects: see the documentation of \hyperlink{classSmartCollection}{SmartCollection} for info on how these objects are handled.
45
46 \subsection{Constructor \& Destructor Documentation}
47 \hypertarget{classCollectionAction_35e6d0d0351e0fafe4b508faeb3598d6}{
48 \index{CollectionAction@{CollectionAction}!CollectionAction@{CollectionAction}}
49 \index{CollectionAction@{CollectionAction}!CollectionAction@{CollectionAction}}
50 \subsubsection[{CollectionAction}]{\setlength{\rightskip}{0pt plus 5cm}CollectionAction::CollectionAction (const char $\ast$ {\em actionName})\hspace{0.3cm}{\tt \mbox{[}inline\mbox{]}}}}
51 \label{classCollectionAction_35e6d0d0351e0fafe4b508faeb3598d6}
52
53
54 Constructor.
55
56 \begin{Desc}
57 \item[Parameters:]
58 \begin{description}
59 \item[{\em actionName}]The action's name. \end{description}
60 \end{Desc}
61
62
63 \subsection{Member Function Documentation}
64 \hypertarget{classCollectionAction_3644c42bef3002c44202b6e9630bc1a4}{
65 \index{CollectionAction@{CollectionAction}!Finalize@{Finalize}}
66 \index{Finalize@{Finalize}!CollectionAction@{CollectionAction}}
67 \subsubsection[{Finalize}]{\setlength{\rightskip}{0pt plus 5cm}virtual void CollectionAction::Finalize ()\hspace{0.3cm}{\tt \mbox{[}inline, virtual\mbox{]}}}}
68 \label{classCollectionAction_3644c42bef3002c44202b6e9630bc1a4}
69
70
71 The finalization routine.
72
73 This method is intended to be called at the end of the analysis. Its implementations contain the finalizing procedures, like writing histograms to file or printing reports. It is automatically called by \hyperlink{classSmartCollection_8105730615ad127a482a7fb399695977}{SmartCollection::Finalize()}.
74
75 Reimplemented in \hyperlink{classChargeHistosAction_b0aa2e207eea6e8f80c89197f9705dbe}{ChargeHistosAction}, \hyperlink{classEvRateS11VsCutoffHistoAction_71062bd029caf54cb174b9b8df5ed6ad}{EvRateS11VsCutoffHistoAction}, \hyperlink{classFluxHistoAction_4565d0ea3ca0f895af489455dfd5ff04}{FluxHistoAction}, and \hyperlink{classSaveEventsAction_790f534c0a888c2a57814cd859b97270}{SaveEventsAction}.\hypertarget{classCollectionAction_ef4ee9fd63c0d232e90694e068e6e339}{
76 \index{CollectionAction@{CollectionAction}!OnBad@{OnBad}}
77 \index{OnBad@{OnBad}!CollectionAction@{CollectionAction}}
78 \subsubsection[{OnBad}]{\setlength{\rightskip}{0pt plus 5cm}virtual void CollectionAction::OnBad (PamLevel2 $\ast$ {\em event}, \/ int {\em selectionResult})\hspace{0.3cm}{\tt \mbox{[}inline, virtual\mbox{]}}}}
79 \label{classCollectionAction_ef4ee9fd63c0d232e90694e068e6e339}
80
81
82 Routine for discarded events.
83
84 The concrete implementations define what to do when an event is discarded. This is conceptually the same as \hyperlink{classPamCut_cbb3b507d79f20878fac4392ffa57acb}{PamCut::OnBad()}. Call to this method is automatically done in \hyperlink{classPamCut_cbb3b507d79f20878fac4392ffa57acb}{SmartCollection::OnBad()}. This method is not pure virtual, since many times there's nothing to do when a cut fails; this way, it's not necessary to implement it in derived classes. Current implementation is void.
85
86 \begin{Desc}
87 \item[Parameters:]
88 \begin{description}
89 \item[{\em event}]The selected event. \item[{\em selectionResult}]The code describing the reason of cut's failure (collections will automatically pass the index of the failed cut as selectionResult). \end{description}
90 \end{Desc}
91 \hypertarget{classCollectionAction_077319900b1cde36b6baca9e6699ec5a}{
92 \index{CollectionAction@{CollectionAction}!OnGood@{OnGood}}
93 \index{OnGood@{OnGood}!CollectionAction@{CollectionAction}}
94 \subsubsection[{OnGood}]{\setlength{\rightskip}{0pt plus 5cm}virtual void CollectionAction::OnGood (PamLevel2 $\ast$ {\em event})\hspace{0.3cm}{\tt \mbox{[}inline, virtual\mbox{]}}}}
95 \label{classCollectionAction_077319900b1cde36b6baca9e6699ec5a}
96
97
98 Routine for selected events.
99
100 The concrete implementations define what to do when an event is selected. This is conceptually the same as \hyperlink{classPamCut_56021e959232270c12528ddec3062985}{PamCut::OnGood()}. Call to this method is automatically done in \hyperlink{classPamCut_56021e959232270c12528ddec3062985}{SmartCollection::OnGood()}.
101
102 \begin{Desc}
103 \item[Parameters:]
104 \begin{description}
105 \item[{\em event}]The selected event. \end{description}
106 \end{Desc}
107
108
109 Reimplemented in \hyperlink{classChargeHistosAction_315d81cbff24a228c85b648393d67107}{ChargeHistosAction}, \hyperlink{classEvRateS11VsCutoffHistoAction_bb38c1bcb9d3e52abd6f929db8577ac6}{EvRateS11VsCutoffHistoAction}, \hyperlink{classFluxHistoAction_363f9657ac69e1051449ec1907c04809}{FluxHistoAction}, and \hyperlink{classSaveEventsAction_47e8259afe7a68ba3c0adf3bd79fe52a}{SaveEventsAction}.\hypertarget{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}{
110 \index{CollectionAction@{CollectionAction}!Setup@{Setup}}
111 \index{Setup@{Setup}!CollectionAction@{CollectionAction}}
112 \subsubsection[{Setup}]{\setlength{\rightskip}{0pt plus 5cm}virtual void CollectionAction::Setup (PamLevel2 $\ast$ {\em events})\hspace{0.3cm}{\tt \mbox{[}inline, virtual\mbox{]}}}}
113 \label{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}
114
115
116 The initialization routine.
117
118 In this routine the initialization procedure is to be defined. \hyperlink{classSmartCollection}{SmartCollection} objects will call \hyperlink{classCollectionAction_13adbcacf5e088f7979f0644a65372b4}{Setup()} for each \hyperlink{classCollectionAction}{CollectionAction} object they hold during \hyperlink{classSmartCollection_9b5b11a854b9e174218ea516ceffb34c}{SmartCollection::Setup()}. This method is intended for some possible post-constructor initialization, like those who need to know the PamLevel2 object (eg., clone trees selection). This method is likely to be unnecessary most of the times, so it is implemented as a void function and it's not pure virtual.
119
120 \begin{Desc}
121 \item[Parameters:]
122 \begin{description}
123 \item[{\em events}]The PamLevel2 events which will be analyzed by the collection hosting the action. \end{description}
124 \end{Desc}
125
126
127 Reimplemented in \hyperlink{classSaveEventsAction_3a59e42181c79dcd192b0be3d14a34c2}{SaveEventsAction}.
128
129 The documentation for this class was generated from the following file:\begin{CompactItemize}
130 \item
131 CollectionActions/CollectionAction/\hyperlink{CollectionAction_8h}{CollectionAction.h}\end{CompactItemize}

  ViewVC Help
Powered by ViewVC 1.1.23