--- PamCut/Collections/BlindCutCollection/BlindCutCollection.h 2009/05/27 13:30:09 1.1 +++ PamCut/Collections/BlindCutCollection/BlindCutCollection.h 2009/06/05 13:13:49 1.3 @@ -19,8 +19,12 @@ */ class BlindCutCollection: public PamCutCollection { public: - /*! @brief Constructor. */ - BlindCutCollection(const char *cutName): PamCutCollection(cutName){ + /*! @brief Constructor. + * + * @param collectionName The collection's name. + */ + BlindCutCollection(const char *collectionName) : + PamCutCollection(collectionName) { } /*! @brief Destructor. */ @@ -32,6 +36,8 @@ * This method checks all the cuts for the current event. It exits only after * all the cuts have been evaluated. Note that it doesn't call OnGood() nor OnBad(), not * even for the PamCut objects in the collection. + * + * @param event The event to analyze. * @return the index of the first failed cut (range: [0, \#cuts-1], see AddCut()); \ * #CUTOK if the event satisfies all the cuts. */ @@ -53,6 +59,4 @@ }; - - #endif /* BLINDCUTCOLLECTION_H_ */