Most people are going to say that allowing Root to log into SSH is a bad idea (and for security purposes, it is) but there are two options:
1. Log in as TC and to switch to "root" mode, simply type in su and enter Root's password when asked (you're now logged in as root until you disconnect or type in exit. If you typed in exit, you'll be switched back over to TC's account. This is the easiest and safest means to directly gain Root access through SSH.)
2. The alternative is to open the SSH gates allowing Root to physically log in. HOW to enable ROOT ACCESS will depend on which SSH server/daemon you're running.
For dropbear: simply edit /usr/local/etc/init.d/dropbear and remove the -w and -g from the line starting with OPTIONS=
For most compilations of OpenSSH, you have to edit its config file and there's a line stating #PermitRootLogin... Replace this line to read:
PermitRootLogin=yes
For any other SSH daemon, simply Google "How to allow root with [DaemonName]
Good luck!