WordPress Tag Page Hook?

There is a conditional called :

is_tag

//From the codex

is_tag();
// When any Tag archive page is being displayed.

is_tag('mild');
// When the archive page for tag with the slug of 'mild' is being displayed.

is_tag(array('sharp','mild','extreme'));
// Returns true when the tag archive being displayed has a slug of either "sharp", "mild", or "extreme".

http://codex.wordpress.org/Function_Reference/is_tag