/[PAMELA software]/PamCut/Collections/VerboseBlindCollection/VerboseBlindCollection.h
ViewVC logotype

Annotation of /PamCut/Collections/VerboseBlindCollection/VerboseBlindCollection.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Fri May 29 10:08:46 2009 UTC (15 years, 6 months ago) by pam-fi
Branch: MAIN
File MIME type: text/plain
Added to repository

1 pam-fi 1.1 /*
2     * VerboseBlindCollection.h
3     *
4     * Created on: 16-mag-2009
5     * Author: Nicola Mori
6     */
7    
8     /*! @file VerboseBlindCollection.h The VerboseBlindCollection class definition file */
9    
10     #ifndef VERBOSEBLINDCOLLECTION_H_
11     #define VERBOSEBLINDCOLLECTION_H_
12    
13     #include "../SmartBlindCollection/SmartBlindCollection.h"
14     /*! @brief A smart blind collection which prints selection reports.
15     *
16     * This class inherits from SmartBlindCollection, so it can handle actions. It is designed to
17     * automate a very common task: printing the selection results at the end of the analysis.
18     * Other desired tasks can be accomplished by means of actions.
19     */
20     class VerboseBlindCollection: public SmartBlindCollection {
21    
22     public:
23    
24     /*! @brief Constructor.
25     *
26     * @param collectionName The collection's name.
27     */
28     VerboseBlindCollection(const char *collectionName) :
29     SmartBlindCollection(collectionName) {
30     }
31    
32     /*! @brief Destructor. */
33     ~VerboseBlindCollection() {
34     }
35    
36     /*! @brief The post analysis task.
37     *
38     * This implementation simply prints the selection report, and then calls
39     * SmartColletion::Finalize().
40     */
41     void Finalize();
42    
43     };
44    
45     #endif /* VERBOSEBLINDCOLLECTION_H_ */

  ViewVC Help
Powered by ViewVC 1.1.23